Вопросы по CLEO-скриптингу

itsLegend

Фонд борьбы за жуков 🐞
Администратор
2,696
1,469
Замени эту строку на:
Код:
00A0: store_actor $PLAYER_ACTOR position_to ACTOR_X_POS ACTOR_Y_POS ACTOR_Z_POS
 

itsLegend

Фонд борьбы за жуков 🐞
Администратор
2,696
1,469
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@
 

itsLegend

Фонд борьбы за жуков 🐞
Администратор
2,696
1,469
Как можно получить поинтер на локальную структуру автомобиля?
 

itsLegend

Фонд борьбы за жуков 🐞
Администратор
2,696
1,469
Как можно реализовать "Отправка "ложных" позиций на автомобиле"...
Вот (пытался) сделать, но он не работает :( :
Код:
{$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
 

MogAika

Известный
Автор темы
Друг
237
444
Как можно реализовать "Отправка "ложных" позиций на автомобиле"...
Вот как надо сделать :
Код:
{$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
 

itsLegend

Фонд борьбы за жуков 🐞
Администратор
2,696
1,469
ЛОЛ, это функции.
Знаю.. Я говорю, что она не работает, не отправляет пакеты.

Вот как надо сделать :
Код:
{$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
Не работает :(