Hi!I was reading this
I understood the first part.
But the second part where he makes the Cleo able to go ON/OFF.I didn't understand.
So can anyone please explain the following code to me?Like what each line does and what it means etc.
Thanks
I understood the first part.
But the second part where he makes the Cleo able to go ON/OFF.I didn't understand.
So can anyone please explain the following code to me?Like what each line does and what it means etc.
Code:
thread 'TESTCLEO'
:TESTCLEO_01
wait 0
if
0AB0: key_pressed 123
else_jump @TESTCLEO_02
0332: set_actor $PLAYER_ACTOR bleeding 1
jump @TESTCLEO_01
:TESTCLEO_02
wait 0
if
0AB0: key_pressed 122
else_jump @TESTCLEO_01
0332: set_actor $PLAYER_ACTOR bleeding 0
jump @TESTCLEO_01
[/URL]