CLEO Help HELP

CLEO related
Status
Not open for further replies.

KingOfGta

Member
Joined
Apr 3, 2014
Messages
12
Reaction score
0
Code:
{$CLEO}
0000:

:MAIN
wait 0
if and
056D:   actor $PLAYER_ACTOR defined 
key_down 90 
jf @MAIN 
0AB5: store_actor $PLAYER_ACTOR closest_vehicle_to 0@ closest_ped_to 1@ 
if 
056D:   actor 1@ defined 
jf @MAIN
2@ = SAMP.GetPlayerNickname(1@)
wait 200 
0AF9: samp say_msg "/ant %d" 2@
wait 500 
goto @MAIN
Help! Its compile but not working :bawww:
 

ThermaL

Expert
Joined
Oct 23, 2013
Messages
1,593
Reaction score
3
dariusradu link said:
I don't think you need to put 0000: after {$CLEO}.
Wait for others to respond.
Stop this useless posting :face_palm:
KingOfGta link said:
Code:
{$CLEO}
0000:

:MAIN
wait 0
if and
056D:   actor $PLAYER_ACTOR defined 
key_down 90 
jf @MAIN 
0AB5: store_actor $PLAYER_ACTOR closest_vehicle_to 0@ closest_ped_to 1@ 
if 
056D:   actor 1@ defined 
jf @MAIN
2@ = SAMP.GetPlayerNickname(1@)
wait 200 
0AF9: samp say_msg "/ant %d" 2@
wait 500 
goto @MAIN
Help! Its compile but not working :bawww:
{$CLEO}
0000: NOP

:MAIN
wait 0
if
0AB0: 90
jf @MAIN
0AB5: store_actor $PLAYER_ACTOR closest_vehicle_to $NOT_USED closest_ped_to 0@
if
056D:  actor 0@ defined
jf @MAIN
1@ = SAMP.GetSAMPPlayerIDByActorHandle(0@)
0AF9: samp say_msg "/ant %d" 1@

:REPEAT
wait 0
if
8AB0: 90
jf @REPEAT
goto @MAIN
 
Status
Not open for further replies.
Top