CLEO Help How do i do it?

CLEO related
Status
Not open for further replies.

rein

Member
Joined
Jan 3, 2016
Messages
17
Reaction score
0
{$CLEO .cs}
0000: NOP

:MAIN
wait 0
0@ = 0
if and
Player.Defined($PLAYER_ACTOR)
0ADC:   test_cheat "REIN"
jf @MAIN
print 'AKTYWACJA' 1337
0@ = 1
jump @TRZY

:DWA
wait 0
if
0@ == 1
jf @MAIN
wait 5000
0C72: set_virtual_key 87 down true
wait 400
0C72: set_virtual_key 87 down false
wait 5000
0C72: set_virtual_key 83 down true
wait 400
0C72: set_virtual_key 83 down false
jump @TRZY

:TRZY
wait 0
print 'moment' 4000
wait 4000
if
0ADC:   test_cheat "REIN"
jf @DWA
0@ = 0
print 'DEZAKTYWACJA' 1337
jump @MAIN





and there is a problem with dezactivating this script, can you help?
 

monday

Expert
Joined
Jun 23, 2014
Messages
1,127
Solutions
1
Reaction score
158
maybe 0C72 is pressing the keys and instead of receiving "RAIN" it receives something like "R:A:I:N"
You could check if that's the case by commenting out all the 0C72 and then trying to deactivate it

Idk how 0ADC: test_cheat works in detail but maybe it doesn't take account of the input if it was written some time ago
To check it you could comment out all the "waits" from label :DWA and :TRZY (except wait 0 ;p)
 
Status
Not open for further replies.
Top