Search results

  1. ItsRobinson

    CLEO Help Timing Issues

    So basically I have a section of code inside my while true loop that is supposed to check if a variable is less than 3, if it is then delete a textdraw if it matches the specific criteria, it is only supposed to do this 3 times. (Basically trying to delete 3 textdraws that make up a server-side...
  2. ItsRobinson

    CLEO Help IF statement always false

    I don't have a clue what I'm doing wrong. :resizeHealthBar 0B35: 0@ = get_last_command_params IF 0AD4: 30@ = scan_string 0@ format "%d %s" 1@ 4@v //IF and SET THEN say "first check" if 0C14: strcmp string1 4@v string2 "Width" then say "inside first string check"...
  3. ItsRobinson

    CLEO Help Delete a textdraw with a specific text.

    So basically I'm trying to delete a textdraw that has a specific text as soon as samp is ready, I have been converting one of my LUA mods to a CLEO and this is the last bit that I can't get to work. Here's my LUA code so that you can get an idea of what I'm trying to do: (under my loop) if...
  4. ItsRobinson

    CLEO Help draw_texture

    :drawIcon 0470: 4@ = $PLAYER_ACTOR format 20@ "cleo\HDhud\resources\%d.png" 4@ 0B71: render 6@ = load_texture_from_file 20@ 0@ = 1578 1@ = 91 0@ += 6 0B73: render draw_texture 6@ pos 0@ 1@ size 75 75 rotation 0 color 0xFFFFFFFF return I've got a gosub to the function above, which should get the...
  5. ItsRobinson

    CLEO Help CLEO stops SAMP working

    So I don't know what the fuck I've done but here's my issue: I'll be randomly playing (sometimes when I tab in and out) and GTA will freeze and pop up with the "-....not responding...." error. As soon as I close GTA out and try to relaunch, nothing happens, I get a loading circle next to my...
  6. ItsRobinson

    Anti-Aliasing

    So I've played with an ENB for about 2 years, been very nice and enjoyable, beatiful looking, but recently the server I play on has had a massive boost in players and in Idlewood my FPS was dropping from my average of 120 to 40~ So I'm now just looking into finding a nice colormod, which I...
  7. ItsRobinson

    CLEO Help Radar Visible

    So I've been trying to work this out for so long, so SAMP servers that have a spectate feature most likely use this SAMP function http://wiki.sa-mp.com/wiki/TogglePlayerSpectating Which makes the map disappear, it just leaves the map ring but the actual map is invisible. However, with s0beit...
  8. ItsRobinson

    CLEO Help Chat ID's

    I've been looking at this by @monday http://ugbase.eu/Thread-IfTextContains-function I feel like this is sort of what I wanna do but the problem is it's never going to be the same string. Here's what I'm trying to do: I want to make the CLEO store the ID that it finds on a chat line, for...
  9. ItsRobinson

    CLEO Help Skipped Code

    {$CLEO .cs} :Lockpicks thread "Lockpicks" :Lockpicks_10 wait 100 SAMP.Available else_jump @Lockpicks_10 :picklocksx325 wait 0 if and    key_down 17    key_down 111 jf @picklocksx325 alloc 0@ 64 alloc 2@ 256 alloc 3@ 0 jump @dothelocks //This section is completely skipped :dothelocks...
  10. ItsRobinson

    CLEO Help is_char_in_area_3d

    :TestArea_SPAWN 0001: wait  0 ms if key_down 101 goto @TestArea_INITIATE :TestArea_TURNOFF 31@ = false printf "TestArea ~g~OFF" 1337 goto @TestArea_SPAWN :TestArea_INITIATE if 31@ = true 004D: jump_if_false @TestArea_SPAWN if 00A4:   is_char_in_area_3d $PLAYER_ACTOR from 1141.5388 -1287.6674...
Top