Help help with cleo

strikex

Active member
Joined
Nov 30, 2013
Messages
38
Reaction score
1
[font=arial, sans-serif]
[size=x-large][font=arial, sans-serif]Hello friends[/font]
. [/font][/size]

[font=arial, sans-serif][size=x-large]Download a CLEO[size=x-large]But it only works once.[/size][/font][/size]
[font=arial, sans-serif][size=x-large][size=x-large]By pressing the " + " key out of a text.[/size][/font][/size]

[font=arial, sans-serif]
[font=arial, sans-serif]
[size=medium][font=arial, sans-serif]
[size=medium][font=arial, sans-serif]I would like this text to appear , every time I press that key[/font]
.[/font]
[/font][/size][/font][/size]


[font=arial, sans-serif][font=arial, sans-serif][size=medium][font=arial, sans-serif][size=x-large]Sorry for my English LOL[/font][/font][/size][/font][/size]


Code:
{$CLEO .cs}
:DEMOTEXT
03A4: name_thread "DEMO"
wait 1000
 
:DEMOTEXT_1
wait 0
if
0256:   player $PLAYER_CHAR defined 
004D: jump_if_false @DEMOTEXT_1
if
key_down 107
004D: jump_if_false @DEMOTEXT_1
018C: play_sound 1052 at 0.0 0.0 0.0
chatmsg "TESTING{33FF33} ON{FFFFFF} ." 12500670
0A93: end_custom_thread
 

MDA

Active member
Joined
Jun 15, 2016
Messages
32
Reaction score
0
try this:
Code:
{$CLEO .cs}
thread 'demo'

:DEMOTEXT
wait 0
if
0256:   player $PLAYER_CHAR defined 
004D: jump_if_false @DEMOTEXT
if
key_down 107
004D: jump_if_false @DEMOTEXT
018C: play_sound 1052 at 0.0 0.0 0.0
chatmsg "TESTING{33FF33} ON{FFFFFF} ." 12500670
jump @DEMOTEXT
 
Top