Recent content by dotaczik

  1. D

    CLEO Help Passing variable as an argument

    Thank you so much ;) it was the compiler settings.
  2. D

    CLEO Help Passing variable as an argument

    There is link to pastebin with code. Here is the code: {$CLEO .cs} 0000: "TEST" wait 20000 // Waiting to load SAMP :Load wait 200 if SAMP.Available else_jump @Load // Registering commands 0B34: samp register_client_command "activate" to_label @ACTIVATE :loop wait 0...
  3. D

    CLEO Help Passing variable as an argument

    Hello I have a problem with passing variables to some text op codes such like "0AD1: show_formatted_text_highpriority " , " 0AF9: samp say_msg " , "0AF8: samp add_message_to_chat" ... I tried these posibilities to get my code work. But still I am not succsesful. Instead of number, I am passing...
  4. D

    CLEO Help Cancelling cycle

    But with this edited code you posted, isnt that key press condition irelevant ? Code start, it will check the condition if key is pressed and if no it will jump to start, if its pressed it will enter while loop, where i am toogling just by writing command in chat, it will never get out of the...
  5. D

    CLEO Help Cancelling cycle

    So Am i right, that this code works this way: when command is typed in console, it will call directive "toogle" and it will change state of 30@. And when wait command end and code get to checking if 30@== 0 than it will react to current state if it is turned on or off. Is there some way, how to...
  6. D

    CLEO Help Cancelling cycle

    Hi I have a problem in my little cleo script and I cant find soloution. The thing is I have a code where my script fire in cycle. There is command wait, where it waits 80 sec. And I want to stop this cycling by pressing some key. But when it waits 80 sec I cant use condition for pressing a...
Top