CLEO Help how to create cleo that type for me?

CLEO related
Status
Not open for further replies.

kakaka

Active member
Joined
Jun 7, 2014
Messages
59
Reaction score
0
I would like to create a cleo that when activated, he typed what I set in the code time

i know it can be used
WAIT, but what function you write for me?
 
Joined
Feb 18, 2005
Messages
2,965
Reaction score
273
If you mean send a message then use 0AF9.

Code:
if 0AB0: XX/or any activation you want to use
then 0AF9: say_msg "hello"
end
 

MrChristmas

Expert
Joined
Jul 29, 2014
Messages
563
Reaction score
26
{$CLEO}

0000: NOP

:SAY
wait 0
if
key_down [YOUR KEY]
else_jump @SAY
0AF9: samp say_msg "[YOUR MESSAGE]"
goto @SAY
 

kakaka

Active member
Joined
Jun 7, 2014
Messages
59
Reaction score
0
Mr.Christmas link said:
{$CLEO}

0000: NOP

:SAY
wait 0
if
key_down [YOUR KEY]
else_jump @SAY
0AF9: samp say_msg "[YOUR MESSAGE]"
goto @SAY

thanks Mr.Christmas and springfield =D
 
Status
Not open for further replies.
Top