это ничего не изменитЗамени эту строку на:
Код:00A0: store_actor $PLAYER_ACTOR position_to ACTOR_X_POS ACTOR_Y_POS ACTOR_Z_POS
Да, я лично делал у себя в CLEO.
А код кинуть можешь?)
Легенд скрипт заработал, но дело в том , что маркеры эти появляются рандомно.OWSLA, замени в начале:
наКод:CP_X_POS = 12@ CP_Y_POS = 13@ CP_Z_POS = 14@
Код:ACTOR_X_POS = 12@ ACTOR_Y_POS = 13@ ACTOR_Z_POS = 14@
Что?Легенд скрипт заработал, но дело в том , что маркеры эти появляются рандомно.
Про них никто, мне, не говорил.Это как маркеры на ферме - рандом. То есть нужно искать постоянно.
что-то ты не по русски пишешь, наверно эти опкоды тебе нужныКак можно получить поинтер на локальную структуру автомобиля?
{$CLEO}
{$include includes\RakNetDefines.txt}
0000:
const
sizeof_stInCarData = 63
end
// struct stInCarData ( size = 63 )
// uint16_t sVehicleID;
// uint16_t sLeftRightKeys; + 2
// uint16_t sUpDownKeys; + 4
// uint16_t sKeys; + 6
// float fQuaternion[4]; + 8
// float fPosition[3]; + 24
// float fMoveSpeed[3]; + 36
// float fVehicleHealth; + 48
// uint8_t bytePlayerHealth; + 52
// uint8_t byteArmor; + 53
// uint8_t byteCurrentWeapon; + 54
// uint8_t byteSiren; + 55
// uint8_t byteLandingGearState; + 56
// uint16_t sTrailerID; + 57
// float fTrainSpeed; + 59
:SendInCarFakePosition
// 0@, 1@, 2@ = coords
// Example: 0AB1: call @SendInCarFakePosition 3 xyz 10@ 11@ 12@
03C0: 3@ = actor car $PLAYER_ACTOR
0A97: 3@ = car struct 3@
3@ += 681
0AC8: 4@ = allocate_memory_size sizeof_stInCarData
0AB1: call @memcpy 3 destination 4@ source 3@ size sizeof_stInCarData
0085: 5@ = 4@
5@ += 24
0A8C: write_memory 5@ size 4 value 0@ virtual_protect 0
5@ += 4
0A8C: write_memory 5@ size 4 value 1@ virtual_protect 0
5@ += 4
0A8C: write_memory 5@ size 4 value 2@ virtual_protect 0
0B3D: raknet 5@ = new_bit_stream
0B40: raknet bit_stream 5@ write PACKET_VEHICLE_SYNC type BS_TYPE_BYTE size 1
0B40: raknet bit_stream 5@ write 4@ type BS_TYPE_ARRAY size sizeof_stInCarData
0B42: raknet send bit_stream 5@ priority PRIORITY_HIGH reliability UNRELIABLE_SEQUENCED ordering_channel 0
0B3E: raknet delete_bit_stream 5@
0AC9: free_allocated_memory 4@
0AB2: ret 0
:memcpy
var
0@ : integer
1@ : integer
2@ : integer
3@ : integer
end
// 0@ - destination, 1@ - source, 2@ - size
// Example: 0AB1: call @memcpy 3 destination 0@ source 1@ size 2@
dec(2@)
for 3@ = 0 to 2@
0A8D: 4@ = read_memory 1@ size 1 virtual_protect 0
0A8C: write_memory 0@ size 1 value 4@ virtual_protect 0
1@ += 1
0@ += 1
end
0AB2: ret 0
Вот как надо сделать :Как можно реализовать "Отправка "ложных" позиций на автомобиле"...
{$CLEO}
{$include includes\RakNetDefines.txt}
0000:
while true
wait 0
0AB1: call @SendInCarFakePosition 3 xyz 1.231 2.131 5.121
end
//====================== SCM SCRIPTS ================
const
sizeof_stInCarData = 63
end
// struct stInCarData ( size = 63 )
// uint16_t sVehicleID;
// uint16_t sLeftRightKeys; + 2
// uint16_t sUpDownKeys; + 4
// uint16_t sKeys; + 6
// float fQuaternion[4]; + 8
// float fPosition[3]; + 24
// float fMoveSpeed[3]; + 36
// float fVehicleHealth; + 48
// uint8_t bytePlayerHealth; + 52
// uint8_t byteArmor; + 53
// uint8_t byteCurrentWeapon; + 54
// uint8_t byteSiren; + 55
// uint8_t byteLandingGearState; + 56
// uint16_t sTrailerID; + 57
// float fTrainSpeed; + 59
:SendInCarFakePosition
// 0@, 1@, 2@ = coords
// Example: 0AB1: call @SendInCarFakePosition 3 xyz 10@ 11@ 12@
03C0: 3@ = actor car $PLAYER_ACTOR
0A97: 3@ = car struct 3@
3@ += 681
0AC8: 4@ = allocate_memory_size sizeof_stInCarData
0AB1: call @memcpy 3 destination 4@ source 3@ size sizeof_stInCarData
0085: 5@ = 4@
5@ += 24
0A8C: write_memory 5@ size 4 value 0@ virtual_protect 0
5@ += 4
0A8C: write_memory 5@ size 4 value 1@ virtual_protect 0
5@ += 4
0A8C: write_memory 5@ size 4 value 2@ virtual_protect 0
0B3D: raknet 5@ = new_bit_stream
0B40: raknet bit_stream 5@ write PACKET_VEHICLE_SYNC type BS_TYPE_BYTE size 1
0B40: raknet bit_stream 5@ write 4@ type BS_TYPE_ARRAY size sizeof_stInCarData
0B42: raknet send bit_stream 5@ priority PRIORITY_HIGH reliability UNRELIABLE_SEQUENCED ordering_channel 0
0B3E: raknet delete_bit_stream 5@
0AC9: free_allocated_memory 4@
0AB2: ret 0
:memcpy
var
0@ : integer
1@ : integer
2@ : integer
3@ : integer
end
// 0@ - destination, 1@ - source, 2@ - size
// Example: 0AB1: call @memcpy 3 destination 0@ source 1@ size 2@
dec(2@)
for 3@ = 0 to 2@
0A8D: 4@ = read_memory 1@ size 1 virtual_protect 0
0A8C: write_memory 0@ size 1 value 4@ virtual_protect 0
1@ += 1
0@ += 1
end
0AB2: ret 0
Знаю.. Я говорю, что она не работает, не отправляет пакеты.ЛОЛ, это функции.
Не работает :(Вот как надо сделать :
Код:{$CLEO} {$include includes\RakNetDefines.txt} 0000: while true wait 0 0AB1: call @SendInCarFakePosition 3 xyz 1.231 2.131 5.121 end //====================== SCM SCRIPTS ================ const sizeof_stInCarData = 63 end // struct stInCarData ( size = 63 ) // uint16_t sVehicleID; // uint16_t sLeftRightKeys; + 2 // uint16_t sUpDownKeys; + 4 // uint16_t sKeys; + 6 // float fQuaternion[4]; + 8 // float fPosition[3]; + 24 // float fMoveSpeed[3]; + 36 // float fVehicleHealth; + 48 // uint8_t bytePlayerHealth; + 52 // uint8_t byteArmor; + 53 // uint8_t byteCurrentWeapon; + 54 // uint8_t byteSiren; + 55 // uint8_t byteLandingGearState; + 56 // uint16_t sTrailerID; + 57 // float fTrainSpeed; + 59 :SendInCarFakePosition // 0@, 1@, 2@ = coords // Example: 0AB1: call @SendInCarFakePosition 3 xyz 10@ 11@ 12@ 03C0: 3@ = actor car $PLAYER_ACTOR 0A97: 3@ = car struct 3@ 3@ += 681 0AC8: 4@ = allocate_memory_size sizeof_stInCarData 0AB1: call @memcpy 3 destination 4@ source 3@ size sizeof_stInCarData 0085: 5@ = 4@ 5@ += 24 0A8C: write_memory 5@ size 4 value 0@ virtual_protect 0 5@ += 4 0A8C: write_memory 5@ size 4 value 1@ virtual_protect 0 5@ += 4 0A8C: write_memory 5@ size 4 value 2@ virtual_protect 0 0B3D: raknet 5@ = new_bit_stream 0B40: raknet bit_stream 5@ write PACKET_VEHICLE_SYNC type BS_TYPE_BYTE size 1 0B40: raknet bit_stream 5@ write 4@ type BS_TYPE_ARRAY size sizeof_stInCarData 0B42: raknet send bit_stream 5@ priority PRIORITY_HIGH reliability UNRELIABLE_SEQUENCED ordering_channel 0 0B3E: raknet delete_bit_stream 5@ 0AC9: free_allocated_memory 4@ 0AB2: ret 0 :memcpy var 0@ : integer 1@ : integer 2@ : integer 3@ : integer end // 0@ - destination, 1@ - source, 2@ - size // Example: 0AB1: call @memcpy 3 destination 0@ source 1@ size 2@ dec(2@) for 3@ = 0 to 2@ 0A8D: 4@ = read_memory 1@ size 1 virtual_protect 0 0A8C: write_memory 0@ size 1 value 4@ virtual_protect 0 1@ += 1 0@ += 1 end 0AB2: ret 0