CLEO Help Why i can´t deactivate this?

CLEO related
Status
Not open for further replies.

chmo

Member
Joined
Feb 10, 2014
Messages
15
Reaction score
0
Hello Guys,

i can´t deactivate this script wenn I press F2. Can anyone tell me why?

{$CLEO .cs}

//-------------MAIN---------------
wait 3000
0@ = 304498

:CB3R_15
thread 'CB3R'
wait 0
if
0AB0:  key_pressed 114
else_jump @CB3R_15
018C: play_sound 1057 at 0.0 0.0 0.0
00BC: show_text_highpriority GXT 'CHEAT1' time 1000 flag 1  // Cheat aktiviert

:CB3R_81
wait 0
if
  not Actor.Stopped($PLAYER_ACTOR)
else_jump @CB3R_81                                 
Actor.SetImmunities($PLAYER_ACTOR, 0, 0, 0, 0, 0)
wait 50
Actor.SetImmunities($PLAYER_ACTOR, 1, 0, 0, 0, 0)
wait 1000
Actor.SetImmunities($PLAYER_ACTOR, 0, 0, 0, 0, 0)
wait 100
jump @CB3R_81
wait 200

:CB3R2
thread 'CB3R2'
wait 0
if
0AB0:  key_pressed 113
else_jump @CB3R2
018C: play_sound 1058 at 0.0 0.0 0.0
00BC: show_text_highpriority GXT 'CHEAT8' time 1000 flag 1  // Cheat deaktiviert
Actor.SetImmunities($PLAYER_ACTOR, 0, 0, 0, 0, 0)
wait 2500
jump @CB3R_15
 

ThermaL

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

//-------------MAIN---------------
wait 3000 
0@ = 304498

thread 'CB3R'  

:CB3R_15
wait 0 
if 
0AB0:   key_pressed 114 
else_jump @CB3R_15 
018C: play_sound 1057 at 0.0 0.0 0.0 
00BC: show_text_highpriority GXT 'CHEAT1' time 1000 flag 1  // Cheat aktiviert
jump @CB3R_81

:CB3R_81
wait 0 
if 
   not Actor.Stopped($PLAYER_ACTOR)
else_jump @CB3R_81                                  
Actor.SetImmunities($PLAYER_ACTOR, 0, 0, 0, 0, 0)
wait 50 
Actor.SetImmunities($PLAYER_ACTOR, 1, 0, 0, 0, 0)
wait 1000 
Actor.SetImmunities($PLAYER_ACTOR, 0, 0, 0, 0, 0)
wait 100 
jump @CB3R2 

:CB3R2
wait 0 
if 
0AB0:   key_pressed 113 
else_jump @CB3R2 
018C: play_sound 1058 at 0.0 0.0 0.0 
00BC: show_text_highpriority GXT 'CHEAT8' time 1000 flag 1  // Cheat deaktiviert
Actor.SetImmunities($PLAYER_ACTOR, 0, 0, 0, 0, 0)
wait 2500 
jump @CB3R_15
 

chmo

Member
Joined
Feb 10, 2014
Messages
15
Reaction score
0
The CLEO don´t work yet :S
I see the "Cheat Aktiviert" and "Cheat Deactiviert" but it doesn´t work.
The Code that I post works but I can´t deactivate this.
 
Status
Not open for further replies.
Top