CLEO Help Is it possible to make it work on SAMP 0.3DL

CLEO related
Status
Not open for further replies.

Kelvin_One

Member
Joined
Jul 3, 2021
Messages
17
Reaction score
0
Location
Canada
Code:
{$CLEO}
0000: NOP

0662: printstring "SaburXYZ"  

repeat
wait 0
until SAMP.Available()

0ACD: show_text_highpriority "SaburXYZ" time 5000

:1
wait 0
if
0ADC: "mcar"
jf @1
0ACD: show_text_highpriority "NOPS ~G~ON" time 1500
SAMP.ReadSAMPMemory(1@,0x146E0,2)
SAMP.ReadSAMPMemory(2@,0x15970,2)
SAMP.ReadSAMPMemory(3@,0xB2510,2)
SAMP.WriteSAMPMemory(0x146E0,0xC390,2)
SAMP.WriteSAMPMemory(0x15970,0xC390,2)
SAMP.WriteSAMPMemory(0xB2510,0xC20400,2)
wait 500
jump @2

:2
wait 0
if
0ADC: "mcar"
jf @2
0ACD: show_text_highpriority "NOPS ~R~OFF" time 1500
SAMP.WriteSAMPMemory(0x146E0,1@,2)
SAMP.WriteSAMPMemory(0x15970,2@,2)
SAMP.WriteSAMPMemory(0xB2510,3@,2)
wait 500
jump @1
@ajom help me bro. Tks you bro - Bro can this 0.3.7 CLEO Macar work on SAMP 0.3DL?. If yes, that would be great
 

SobFoX

Expert
Joined
Jul 14, 2015
Messages
1,389
Solutions
4
Reaction score
893
Location
Israel
Just need to update OFFSET
But I do not know the RemovePlayerFromVehicle
can help? @Parazitas
Code:
{$CLEO}
0000: NOP

0662: printstring "SaburXYZ" 

repeat
wait 0
until SAMP.Available()

0ACD: show_text_highpriority "SaburXYZ" time 5000

:1
wait 0
if
0ADC: "mcar"
jf @1
0ACD: show_text_highpriority "NOPS ~G~ON" time 1500
SAMP.ReadSAMPMemory(1@,0x146E0,2)  //RemovePlayerFromVehicle          0.3.7
SAMP.ReadSAMPMemory(2@,0x18E50,2)                 //SetPlayerPos                             0.3.DL
SAMP.ReadSAMPMemory(3@,0xB85A0,2)                //SetEngineState                              0.3.DL
SAMP.WriteSAMPMemory(0x146E0,0xC390,2)              //RemovePlayerFromVehicle     0.3.7
SAMP.WriteSAMPMemory(0x18E50,0xC390,2)                  //SetPlayerPos                        0.3.DL
SAMP.WriteSAMPMemory(0xB85A0,0xC20400,2)                        //SetEngineState         0.3.DL
wait 500
jump @2

:2
wait 0
if
0ADC: "mcar"
jf @2
0ACD: show_text_highpriority "NOPS ~R~OFF" time 1500
SAMP.WriteSAMPMemory(0x0146E0,1@,2)       //RemovePlayerFromVehicle              0.3.7
SAMP.WriteSAMPMemory(0x18E50,2@,2)        //SetPlayerPos                      0.3.DL
SAMP.WriteSAMPMemory(0xB85A0,3@,2)         //SetEngineState                        0.3.DL
wait 500
jump @1
 

Kelvin_One

Member
Joined
Jul 3, 2021
Messages
17
Reaction score
0
Location
Canada
Just need to update OFFSET
But I do not know the RemovePlayerFromVehicle
can help? @Parazitas
Code:
{$CLEO}
0000: NOP

0662: printstring "SaburXYZ"

repeat
wait 0
until SAMP.Available()

0ACD: show_text_highpriority "SaburXYZ" time 5000

:1
wait 0
if
0ADC: "mcar"
jf @1
0ACD: show_text_highpriority "NOPS ~G~ON" time 1500
SAMP.ReadSAMPMemory(1@,0x146E0,2)  //RemovePlayerFromVehicle          0.3.7
SAMP.ReadSAMPMemory(2@,0x18E50,2)                 //SetPlayerPos                             0.3.DL
SAMP.ReadSAMPMemory(3@,0xB85A0,2)                //SetEngineState                              0.3.DL
SAMP.WriteSAMPMemory(0x146E0,0xC390,2)              //RemovePlayerFromVehicle     0.3.7
SAMP.WriteSAMPMemory(0x18E50,0xC390,2)                  //SetPlayerPos                        0.3.DL
SAMP.WriteSAMPMemory(0xB85A0,0xC20400,2)                        //SetEngineState         0.3.DL
wait 500
jump @2

:2
wait 0
if
0ADC: "mcar"
jf @2
0ACD: show_text_highpriority "NOPS ~R~OFF" time 1500
SAMP.WriteSAMPMemory(0x0146E0,1@,2)       //RemovePlayerFromVehicle              0.3.7
SAMP.WriteSAMPMemory(0x18E50,2@,2)        //SetPlayerPos                      0.3.DL
SAMP.WriteSAMPMemory(0xB85A0,3@,2)         //SetEngineState                        0.3.DL
wait 500
jump @1
1 error left when saving CLEO until SAMP.Available() Bro can fix it?
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,112
Solutions
5
Reaction score
878
Location
Lithuania
Just need to update OFFSET
But I do not know the RemovePlayerFromVehicle
can help? @Parazitas
Code:
{$CLEO}
0000: NOP

0662: printstring "SaburXYZ"

repeat
wait 0
until SAMP.Available()

0ACD: show_text_highpriority "SaburXYZ" time 5000

:1
wait 0
if
0ADC: "mcar"
jf @1
0ACD: show_text_highpriority "NOPS ~G~ON" time 1500
SAMP.ReadSAMPMemory(1@,0x146E0,2)  //RemovePlayerFromVehicle          0.3.7
SAMP.ReadSAMPMemory(2@,0x18E50,2)                 //SetPlayerPos                             0.3.DL
SAMP.ReadSAMPMemory(3@,0xB85A0,2)                //SetEngineState                              0.3.DL
SAMP.WriteSAMPMemory(0x146E0,0xC390,2)              //RemovePlayerFromVehicle     0.3.7
SAMP.WriteSAMPMemory(0x18E50,0xC390,2)                  //SetPlayerPos                        0.3.DL
SAMP.WriteSAMPMemory(0xB85A0,0xC20400,2)                        //SetEngineState         0.3.DL
wait 500
jump @2

:2
wait 0
if
0ADC: "mcar"
jf @2
0ACD: show_text_highpriority "NOPS ~R~OFF" time 1500
SAMP.WriteSAMPMemory(0x0146E0,1@,2)       //RemovePlayerFromVehicle              0.3.7
SAMP.WriteSAMPMemory(0x18E50,2@,2)        //SetPlayerPos                      0.3.DL
SAMP.WriteSAMPMemory(0xB85A0,3@,2)         //SetEngineState                        0.3.DL
wait 500
jump @1

Tried this stuff few times before, but idk where is stored vehicle nop memories
 

Kelvin_One

Member
Joined
Jul 3, 2021
Messages
17
Reaction score
0
Location
Canada
No, I'm just updating the offset to 0.3.DL
Use SOBEIT for 0.3.DL you have everything you need there ..
Sobiet Multihack version 2.9.3 how can I turn off Hacker List bro? because 2.9.3 users are all on Hacker List and will know clearly who is using Sobiet. tks bro
 

SobFoX

Expert
Joined
Jul 14, 2015
Messages
1,389
Solutions
4
Reaction score
893
Location
Israel
Sobiet Multihack version 2.9.3 how can I turn off Hacker List bro? because 2.9.3 users are all on Hacker List and will know clearly who is using Sobiet. tks bro

Added tag cheatDL false/true settings mod_sa.ini -- pay attention! Tag Hacker / cheatDL is automatically activated and can be seen only if both sided have this function activated. However admins can abuse it and use it to find hackers! Turn it off if you afraid of getting banned!
 
Status
Not open for further replies.
Top