Search results

  1. D

    CLEO Help Textdraw will crash client?

    WHILE TRUE WAIT 2000     IF 31@ == 1     THEN         31@ = 0         29@ = 7         gosub @DRAW     END END :DRAW 0AC8: 28@ = allocate_memory_size 260 03F0: enable_text_draw 1 0342: set_text_draw_centered 1 03E0: draw_text_behind_textures 0 033F: set_text_draw_letter_size width 0.30 height...
  2. D

    CLEO Help Two versions for the same commands, none of them working

    I've solved the problem, but now I'm facing another problem =)) i'm a shame for cleo 0B36: samp 1@ = get_player_nickname 21@ 0AF9: samp say_msg "/gethere %d" 21@ 0AF9: samp say_msg "/freeze %d" 21@ WAIT 5000 0AF9: samp say_msg "%s, rrrrrrrrrrrr." 1@ After teleporting the...
  3. D

    CLEO Help Two versions for the same commands, none of them working

    Hey, I've made the following commands in two versions. The first version is working, but client is crashing and the 2nd version doesn't work, but client isn't crashing. V1 :cmd_42 SAMP.IsCommandTyped(20@) if 0AD4: $nul  = scan_string 20@ format "%d" 21@ then     0B36: samp 1@ =...
  4. D

    CLEO Help Player name in chatmsg?

    :cmd_118 SAMP.IsCommandTyped(20@) if 0AD4: 20@ = scan_string 20@ format "%d" 21@ then     0B36: samp 1@ = get_player_nickname 21@     0AF8: chatmsg "{CECECE}%s:{FFFFFF} loves you." -1 1@ else     print "~r~/love<id>" 2000 end SAMP.CmdRet() will output " : loves you.". How can I display the...
Top