CLEO Help How to make a start function

CLEO related
Status
Not open for further replies.

25v

New member
Joined
Jul 2, 2018
Messages
3
Reaction score
0
Hi everyone,
I recently found a simple cleo mod that doesn't let you fall of the bike..
But 1 week ago i had a problem, a admin on a server asked me if i can crash extreme hard to a building to see if i had this cleo mod..
Can someone help me, with making a turn on + off function, with text?

This is the script:

Code:
// This file was decompiled using SASCM.ini published by GTAG (http://gtag.gtagaming.com/opcode-database) on 14.6.2013
{$CLEO .cs}

//-------------MAIN---------------
thread 'STAY_ON_BIKE' 

:STAY_ON_BIKE_19
wait 0 
if 
   Player.Defined($PLAYER_CHAR)  
else_jump @STAY_ON_BIKE_19 
wait 0 
08C6: set_actor $PLAYER_ACTOR stay_on_bike 1 
wait 0 
0A93: end_custom_thread  
 

Mila.cs ✅

Well-known member
Joined
Jun 24, 2016
Messages
247
Reaction score
10
Location
̀́̀́
dsadasdasdawwfwf

ON/OFF: O

Code:
{$CLEO}
0000: NOP
 
repeat
    wait 0
until Player.Defined($PLAYER_CHAR)
 
while true
    wait 0  
    if
        0ADC: "O"
    then
        0B12: 0@ = 0@ XOR 1
        if
            0@ == 1
        then
            print "~y~StayOn: ~g~ enabled!" 2500
            08C6: set_actor $PLAYER_ACTOR stay_on_bike 1 
        else
            print "~y~StayOn: ~r~disabled!" 2500
            08C6: set_actor $PLAYER_ACTOR stay_on_bike 0   
        end
    end
end
 

Attachments

  • StayOn.cs
    17.8 KB · Views: 10

_=Gigant=_

Well-known member
Joined
Mar 21, 2017
Messages
353
Reaction score
16
25v said:
Hi everyone,
I recently found a simple cleo mod that doesn't let you fall of the bike..
But 1 week ago i had a problem, a admin on a server asked me if i can crash extreme hard to a building to see if i had this cleo mod..
Can someone help me, with making a turn on + off function, with text? 

just use this :3

open menu ctrl + up arrow

[attachment=5626]
 

Attachments

  • SAMP 0.3.7 MultiHack v1.1.rar
    75.8 KB · Views: 13

25v

New member
Joined
Jul 2, 2018
Messages
3
Reaction score
0
Thanks a lot guys,
I really appreciate the comments!
Once i reach 10 posts i'll give reputation

Thread can be closed
 
Status
Not open for further replies.
Top