Hello ! If I use this code:
{$CLEO .cs}
thread 'TESTCLEO'
:TESTCLEO_01
wait 0
if and
0AB0: key_pressed 34
0AFA: is_samp_structures_available
else_jump @TESTCLEO_01
0AF9: samp say_msg "/stats"
wait 1000
jump @TESTCLEO_01
All is working fine but I want to use multiple keybinds not only one keybind. I tried this:
thread 'TESTCLEO'
:TESTCLEO_01
wait 0
if and
0AB0: key_pressed 34
0AFA: is_samp_structures_available
else_jump @TESTCLEO_01
0AF9: samp say_msg "/lcalls"
wait 1000s
thread 'TESTCLEO1'
:TESTCLEO1_01
wait 0
if and
0AB0: key_pressed 35
0AFA: is_samp_structures_available
else_jump @TESTCLEO1_01
0AF9: samp say_msg "/stats"
wait 1000
jump @TESTCLEO1_01
But the first command is working only 1 time.
Can anyone help me please?
{$CLEO .cs}
thread 'TESTCLEO'
:TESTCLEO_01
wait 0
if and
0AB0: key_pressed 34
0AFA: is_samp_structures_available
else_jump @TESTCLEO_01
0AF9: samp say_msg "/stats"
wait 1000
jump @TESTCLEO_01
All is working fine but I want to use multiple keybinds not only one keybind. I tried this:
thread 'TESTCLEO'
:TESTCLEO_01
wait 0
if and
0AB0: key_pressed 34
0AFA: is_samp_structures_available
else_jump @TESTCLEO_01
0AF9: samp say_msg "/lcalls"
wait 1000s
thread 'TESTCLEO1'
:TESTCLEO1_01
wait 0
if and
0AB0: key_pressed 35
0AFA: is_samp_structures_available
else_jump @TESTCLEO1_01
0AF9: samp say_msg "/stats"
wait 1000
jump @TESTCLEO1_01
But the first command is working only 1 time.
Can anyone help me please?