https://ugbase.eu/threads/how-to-make-a-simple-cleo-script.2110/
Hi,
I just started learning to code Cleo
Why can't I compile this basic code

Hi,
I just started learning to code Cleo
Why can't I compile this basic code

CSS:
{$VERSION 3.1.0027}
{$CLEO .cs}
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