Search results

  1. H

    CLEO Help Editing Opcode.eXe's speed limiter.

    I tried my self of course, my code is below. What I tried to do was enable custom speeds. What really happens is I drive backwards constantly and I can't change the speed limit. Key 73 is 'i', so I expected i+0 to turn off the system, i+# to set a new speed. It seems like none of the keys...
  2. H

    CLEO Help Just when I thought I had it right... CMD Fail!

    I have this code that crashes when I type /that. {$CLEO .cs} 0000: NOP REPEAT     WAIT 500 UNTIL SAMP.Available()                                             0B34: samp register_client_command "that" to_label @CMD_THAT       :loop     WAIT 0     GOTO @loop       :CMD_THAT     WAIT 0    ...
  3. H

    CLEO Help 0AD4 - Doesn't seem to support the '/' character.

    This is an important development for this thread. I discovered something awful...        //DEBUGGER         IF             0AD4: 28@ = scan_string 0@ format "Use {FF0000}/%s" 27S         THEN             0AF8: samp add_message_to_chat "1 %s = %s" 0xFF00FFFF 0@ 27S             wait 5000        ...
  4. H

    CLEO Help Does scan string(0AD4) work with negative integers?

    First off, I'm using this. The updated code is this: {$CLEO} thread "QUIZ" wait 5000 while true wait 0 end :QUIZ_25 wait 0 if   SAMP.Available then 0AC8: 1@ = 256 0AC8: 2@ = 256 0AC8: 3@ = 256 0AC8: 4@ = 256    SAMP.GetChatString(97, 1@, 2@, 3@, 4@)                                 ...
Top