CLEO Help How do i join all cleos into 1 .asi or .cleo (cleo sannybuilder)

CLEO related
Status
Not open for further replies.

downloadstuff

Active member
Joined
Apr 4, 2015
Messages
82
Reaction score
0
hey. So im thinking about joining all the cleos i edited and used into 1 .asi file like as private hack that i've seen that does that. (opHax)

So how do i join all my .cs into 1 .asi or .cleo file ?

thanks :)
 

Zin

Expert
Joined
Aug 1, 2013
Messages
1,700
Reaction score
106
I would love to this with some of my cleo's too and make it like an all in one like Op hax or like Opcodes Itroll hack with the cool interface.
 

downloadstuff

Active member
Joined
Apr 4, 2015
Messages
82
Reaction score
0
Mr.Christmas link said:
Just use dialog function, or you can do it without dialog with @goto to different subs where you have cleos

could you provide an example :>

if possible thanks.

zin link said:
I would love to this with some of my cleo's too and make it like an all in one like Op hax or like Opcodes Itroll hack with the cool interface.

exactly what i want to do xd


edit:

I found this snippet in another post https://ugbase.eu/snippets/run-cleo-in-cleo/ (i used search but didnt find it, but i accidentally found it throught google)

Code:
{$CLEO.cs}
0000:

0AB1: call_scm_func @RUN_CLEO_MOD 1 AT LINE @CLEO_2
{ We use this 0AB1 to call the function to the Second CLEO and so on... not the FIRST one }


:CLEO_1
wait 0
if
0ADC: "DUM"
jf @CLEO_1
print "I'M DA LOVE OF DA NIGGAZ" 696969
jump @CLEO_01
// Finish first thread , now to the second thread.

:CLEO_2 // this the one that use the func "RUN CLEO IN CLEO" we've called.
wait 0
if 
key_down 2
jf @CLEO_2
print "I'm DA NIGGAZ TOOOOOO" 969696
jump @CLEO_2 // DONE


// now paste the snippsets to the end of CLEO
{ we need to paste it otherwise there is nothing to call the func.}

:RUN_CLEO_MOD
0A9F: 32@ = current_thread_pointer
000A: 32@ += 0x10
0A8D: 32@ = read_memory 32@ size 4 virtual_protect 0
0062: 32@ -= 0@
0AA7: call_function 0x464C20 num_params 1 pop 1 32@ 33@
005A: 32@ += 0@
000A: 33@ += 0x10
0A8C: write_memory 33@ size 4 value 32@ virtual_protect 0
000A: 33@ += 0x2C
for 32@ = 0 to 30
    0A8C: write_memory 33@ size 4 value 1@(32@,30i) virtual_protect 0
    000A: 33@ += 4
end
0AB2: ret 0

// NOW 2 CLEOS GONNA BE COMBINED TO 1 CLEO only :b have fun~

So if anyone needs it, here it is.
 
Status
Not open for further replies.
Top