CLEO Help Carjackers

CLEO related
Status
Not open for further replies.

Xolokos

Active member
Joined
May 2, 2014
Messages
28
Reaction score
0
Hello I've made a CLEO ( bugged ), the cheat I supposed to store the car where the player is and when he push F2 setting him to the driver seat.

Code:
{$VERSION 3.1.0027}
{$CLEO .cs}

//-------------MAIN---------------
thread 'CJACK' 


:CJACK_1
wait 25
if and
    0AB0:   key_pressed 113 
    Car.Defined($TEMP_CAR)
else_jump @CJACK_2 
00AA: store_car $TEMP_CAR position_to 3@ 4@ 5@
Actor.PutAt($PLAYER_ACTOR, 3@, 4@, 5@) 
072A: put_actor $PLAYER_ACTOR into_car $TEMP_CAR driverseat  
jump @CJACK_1 

:CJACK_2
wait 5 
if 
   Actor.Driving($PLAYER_ACTOR)
03C0: $TEMP_CAR = actor $PLAYER_ACTOR car 
jump @CJACK_1
 

ThermaL

Expert
Joined
Oct 23, 2013
Messages
1,593
Reaction score
3
Code:
{$CLEO .cs}
0000: NOP

:LABEL1
wait 0
if and
Actor.Driving($PLAYER_ACTOR)
0AB0:   key_pressed 113 
jf @LABEL1 
0@ = Actor.CurrentCar($PLAYER_ACTOR)
Actor.StorePos($PLAYER_ACTOR, 1@, 2@, 3@)
072A: put_actor $PLAYER_ACTOR into_car 0@ driverseat  
0362: remove_actor $PLAYER_ACTOR from_car_and_place_at 1@ 2@ 3@
072A: put_actor $PLAYER_ACTOR into_car 0@ driverseat 

:LABEL2
wait 0
if
not Actor.Driving($PLAYER_ACTOR)
jf @LABEL2
goto @LABEL1
 
Status
Not open for further replies.
Top