CLEO Help Want to learn to make cleos

CLEO related
Status
Not open for further replies.

Loda_Chossle

Member
Joined
Apr 9, 2014
Messages
6
Reaction score
0
:watchout:
hey guys the true is a had never made cleos in my life.
i want to learn how to make cleoa so from where should i start and is there any software for making cleos if yes then post attachment..

so tell me from where should i start..

:imoverit:
 

not490

Well-known member
Joined
Feb 8, 2014
Messages
453
Reaction score
4
First you should download CLEO 4.1(This goes into ur game folder and runs ur cleo files) and  SannyBuilder 3(This is what u make your cleo scripts)

Here is very easy tutorial for you:

Code:
{$CLEO .cs} // allways add {$CLEO .cs} because its the file u gonna compile out soon. Remember the (space) at here  {$CLEO .cs}
 0000: // sometimes it wont let u compile the cleo if u dont add this right here before {$CLEO .cs}             
:THREAD_1 //Here your work begins
wait 0 // this is good to be here, because without this there will be caused an crash
if 
key_down 49
else_jump @THREAD_1 // This means if you are not pressed KEY 49(1) then it goes back to begin and looks if the key is now pressed
0ACD: show_text_highpriority "Gratz, this was your first cleo" time 2000  // remember time is as milliseconds  so 2000ms = 2sec, the time it shows the text
jump @THREAD_1 // after its done, it jumps back to THREAD_1, what is in the begin.



//BTW this  "//" what i did whole time is just an comment what does not matter on your script, it is just a help comment for other scripters   

I hope that helped even my english is crap
 
Status
Not open for further replies.
Top