CLEO Help How to end this script/snippet ?

CLEO related
Status
Not open for further replies.

Kovwal

Active member
Joined
Sep 8, 2013
Messages
74
Reaction score
1
Sooo basicly. I think it's changes the color of all of your radio stations but iam crashing. Also i don't know how to end this:


Code:
{$CLEO .cs}
thread "color1"
0006: 0@ = 0xBAB22C   // base
0A90: 1@ = 4 * 8   // radio text
005A: 0@ += 1@
0A8C: write_memory 0@ size 4 value 0xFFFF00FF virtual_protect 0

Thanks for your help !
 

ThermaL

Expert
Joined
Oct 23, 2013
Messages
1,593
Reaction score
3
{$CLEO .cs}

0000:

:A
wait 0
0006: 0@ = 0xBAB22C  // base
0A90: 1@ = 4 * 8  // radio text
005A: 0@ += 1@
0A8C: write_memory 0@ size 4 value 0xFFFF00FF virtual_protect 0
jump @INFINITE_LOOP

:INFINITE_LOOP
wait 1000
jump @INFINITE_LOOP
 

Opcode.eXe

Expert
Joined
Feb 18, 2013
Messages
1,486
Reaction score
227
Location
( ͡° ͜ʖ ͡°)
{$CLEO .cs}
0000:
0006: 0@ = 0xBAB22C  // base
0A90: 1@ = 4 * 8  // radio text
005A: 0@ += 1@
0A8C: write_memory 0@ size 4 value 0xFFFF00FF virtual_protect 0
004E: end_thread_
 
Status
Not open for further replies.
Top