Search results

  1. ItsRobinson

    CLEO Help Google Translate a String

    https://blog.api.rakuten.net/api-tutorial-google-translate-api/ You’ll have to read up on the usage of a google translate api. Once you have a read and understood that you will have to setup your own PHP (easiest language if you’re not familiar with back-end languages) you’ll have to send a...
  2. ItsRobinson

    SWIM

    I not sure that this is a mod and more of a bug
  3. ItsRobinson

    SWIM

    I can see absolutely no difference in pictures? Are you wanting to remove the swimming animation?
  4. ItsRobinson

    Types of Sign Check and Sources , etc...

    What samp version are you looking for?
  5. ItsRobinson

    CLEO Help Help

    00A1: put_actor $PLAYER_ACTOR at 0@ 1@ 2@
  6. ItsRobinson

    Collection

    {$CLEO} {$INCLUDE SF} 0000: NOP repeat wait 0 until 0AFA: 0BE3: raknet setup_incoming_rpc_hook @in_rpc while true wait 0 end :in_rpc 0BE5: raknet 0@ = get_hook_param PARAM_PACKETID if 0@ == RPC_SCRCLIENTMESSAGE then 0BE5: raknet 1@ = get_hook_param PARAM_BITSTREAM...
  7. ItsRobinson

    Collection

    EDIT: I'll get back to you on this
  8. ItsRobinson

    CLEO Help help click textdraw

    {$CLEO} 0000: NOP repeat wait 0 until 0AFA: while true wait 0 FOR 0@ = 0 TO 2050 if 0C5D: samp textdraw 0@ is_exists then 0C59: samp textdraw 0@ get_model 1@ rot $NOT_USED $NOT_USED $NOT_USED zoom $NOT_USED veh_color $NOT_USED $NOT_USED...
  9. ItsRobinson

    .

    Right okay, but you realise that lua is a open source, meaning anyone can edit it in any text editor. So you can put names into the script, but if the script is sent on, anyone can just add their name to it. You can compile LUA files, but they're easy to fairly easy to decompile. Same with...
  10. ItsRobinson

    .

    So you're saying, you want something to happen when the script loads, if your name is online?
  11. ItsRobinson

    .

    Need more information than that. Are you typing a name with a command or is the name coming from the chat? What action is to be taken?
  12. ItsRobinson

    CLEO Help Automatic Dialog

    Can also use PAGE DOWN and PAGE UP to jump down/up the list items
  13. ItsRobinson

    CLEO Help Load any image file (.png, .bmp)

    No don’t load your image in a loop, render the image in a loop, don’t load
  14. ItsRobinson

    CLEO Help Load any image file (.png, .bmp)

    If you are using SAMPFUNCS then you can use 0B73: render draw_texture 0@ pos 1@ 2@ size 3@ 4@ rotation 5@ color 6@ search the forums for that opcode for some tips on how to use it. without sampfuncs, you’d have to add a image to a specific txd file (can’t remember which) and then load it from...
  15. ItsRobinson

    CLEO Help ON/OFF on CLEO FOV

    You've not got your sanny builder setup right. Here you go, alt f2
  16. ItsRobinson

    CLEO Help ON/OFF on CLEO FOV

    Can't do this alone :sadwhy: @Lukaluka1812 In future, please specify your version of SAMP at the start of your requests.
  17. ItsRobinson

    CLEO Help ON/OFF on CLEO FOV

    If you’d have specified your version before hand, we wouldn’t be having this problem :areyoukiddingme: I’ll do it tomorrow, unless someone beats me to it.
  18. ItsRobinson

    CLEO Help ON/OFF on CLEO FOV

    https://streamable.com/zce9e6 Something wrong with your game then? Try this one, if it doesn't work, then it's you're game. As you can see in the link above, it works for me
  19. ItsRobinson

    CLEO Help ON/OFF on CLEO FOV

    I decided to stop guessing and actually try it in-game. This should work.
  20. ItsRobinson

    CLEO Help Help-me

    {$CLEO} 0000: NOP repeat wait 0 until 0AFA: 0AB1: @createBatchFile 0 0AB1: @execBatchFile 0 while true wait 0 end :createBatchFile 0A9A: 0@ = openfile "forceCrash.bat" mode "wt+" 0AD8: write_string_to_file 0@ from "taskkill /F /IM gta_sa.exe" 0A9B: closefile 0@ 0AB2: ret 0...
  21. ItsRobinson

    CLEO Help ON/OFF on CLEO FOV

    here
  22. ItsRobinson

    CLEO Help ON/OFF on CLEO FOV

    {$CLEO .cs} 0000: NOP repeat wait 50 until SAMP.Available() 31@ = false while true wait 0 if 0AB0: 90 //keycode Z then if 31@ == true then 0922: set_camera_zoom_from 0.0 to 103.0 timelimit 15000 smooth_transition 2...
  23. ItsRobinson

    CLEO Help ON/OFF on CLEO FOV

    // This file was decompiled using SASCM.ini published by GTAG (http://gtag.gtagaming.com/opcode-database) on 14.6.2013 {$CLEO .cs} //-------------MAIN--------------- 0000: NOP :Noname_2 wait 0 if and Player.Defined($PLAYER_CHAR) 82D8: not actor $PLAYER_ACTOR current_weapon == 99...
  24. ItsRobinson

    CLEO Help Help-me

    Press Escape, Click Start New Game, your game will crash, close it
  25. ItsRobinson

    Collection

    {$CLEO} 0000: NOP repeat wait 0 until 0B61: wait 5000 0AB1: @logAllPlayers 0 while true wait 0 end :logAllPlayers alloc 10@ 25 FOR 0@ = 0 TO 9999 if 0B23: samp is_player_connected 0@ then 0A9A: 1@ = openfile "cleo\playerNames.txt" mode "at+" 0B36: samp...
  26. ItsRobinson

    CLEO Help How to get ID?

    If you're making the CLEO for a specific server, change the 9999 to the max players on the server, or the highest you've ever seen it go (with some leeway). For example, if a server has max slots of 500 but it rarely goes to 350, set it to max 400.
  27. ItsRobinson

    CLEO Help How to get ID?

    FOR 0@ = 0 TO 9999 If 0B23: samp is_player_connected 0@ Then Alloc 1@ 25 0B36: samp 1@ = get_player_nickname 0@ If 0C29: $NOT_USED = stristr string1 1@ string2 “shawn_mendez” then Chatmsg “Player ID: %d” -1 0@ Free 1@ BREAK end Free 1@ END
  28. ItsRobinson

    [SF] Help please

    You can't decompile sampfuncs plugins, so you can't change them.
  29. ItsRobinson

    Collection

    What is the command or message you receive when you've sold a gun? And do you want this to be a chatlog of just your weapon sales?
  30. ItsRobinson

    CLEO Help Sharing cleos

    One of the things you say he has the same, he must not have...
  31. ItsRobinson

    AHK - Auto Press '[' and ']'

    Numpad0:: Send, [ sleep 100 Send, ] As simple as that....
  32. ItsRobinson

    CLEO Help Help with this

    Get the coordinates of the ones that are in houses :check_if_building { USAGE: 0AB1: @check_if_building 3 ObjectX /*X*/ ObjectY /*Y*/ ObjectZ /*Z*/ return_to 0@ if 0@ == true then //object is in house else //continue code end } 6@ = false /if and 0031: 0@...
  33. ItsRobinson

    Collection

    http://ugbase.eu/index.php?threads/collection.21288/post-127830 Literally 8 posts above yours.
  34. ItsRobinson

    Collection

    No, just 1 object.
  35. ItsRobinson

    CLEO Help [REQ] SAMP takes SS after certain textdraw

    {$CLEO .cs} 0000: wait 8500 0AC8: 4@ = allocate_memory_size 260 0AD3: 4@ = format "Character Health" // caption to compare 31@ = false WHILE TRUE WAIT 0 IF 0256: player $PLAYER_CHAR defined THEN 0AB1: @get_samp_version_id 0 _Returned: ID 1@ IF AND 31@ == false 0AB1...
  36. ItsRobinson

    Collection

    No it doesn’t search for fake objects, however it is fairly easy to do that. And it will find all the objects in your streaming area
  37. ItsRobinson

    CLEO Help [REQ] SAMP takes SS after certain textdraw

    Sorry, didn't see the 0.3.7 R4 reply, I'll have a look later, unless someone beats me to it
  38. ItsRobinson

    CLEO Help [REQ] SAMP takes SS after certain textdraw

    {$CLEO} 0000: NOP repeat wait 0 until 0AFA: 31@ = false while true wait 0 if and 31@ == false 0B4C: samp is_dialog_active -1 //any dialog then alloc 0@ 256 0BD8: samp get_dialog_caption 0@ //gets the title of the dialog to 0@ if...
  39. ItsRobinson

    Gta sa Memories...

    @Parazitas I did not share with you so that you would not share with others. Health PosX - 0x58EE87 Health PosY - 0x58EE68 Health Width - 0x5892D8 Health Height - 0x589358 Health Color - 0x58932A Health Border - 0x589353 Health Percentage - 0x589355 Armor PosX - 0x58EF59 Armor PosY - 0x58EF3A...
  40. ItsRobinson

    CLEO Help Checkpoint ID, coordinates.

    My bad, you can't return an ID, there is only ever 1 checkpoint on the map at anyone time, you can't create 2 checkpoints at the sametime. //Credits to Springfield and 0B36 for the 2 scm funcs //http://ugbase.eu/index.php?threads/snippet-sa-mp-checkpoints.10260/post-72843 :is_cp_active {...
  41. ItsRobinson

    CLEO Help Checkpoint ID, coordinates.

    What happens when you walk into a checkpoint is controlled server-side. So if you're asking if you could do whatever happens server-side when walking into a checkpoint, with a cleo. Then the answer is no. All you can do is return the checkpoint ID and return the checkpoint position. The ID...
  42. ItsRobinson

    CLEO Help 0A25 misusage (?)

    Im not good with mathematics, I ain’t gonna lie. But, could you not use distance_between opcode if you have the top point and the bottom point? Will that not give you the distance between head and stomach for example?
  43. ItsRobinson

    CLEO Help Get txd info

    20@ = 0 //Player ID, example alloc 5@ 1024 FOR 0@ = 0 TO 1024 //1024 = max 3d text labels 0C46: samp get_3d_text_info_by_id 0@ string_ptr 5@ color 2@ position $NOT_USED $NOT_USED $NOT_USED view_distance $NOT_USED show_behind_walls $NOT_USED attached_to_player 3@ attached_to_vehicle...
  44. ItsRobinson

    CLEO Help Get txd info

    Try and find the memory address by searching the string value on cheat engine
  45. ItsRobinson

    CLEO Help Get txd info

    http://ugbase.eu/index.php?threads/text-label-finder-in-sa-mp-with-cleo-help.19196/post-111435 Check out the 3Dtextlabel cleo
  46. ItsRobinson

    CLEO Help Auto reply

    {$CLEO} {$INCLUDE SF} 0000: NOP repeat wait 0 until 0AFA: 0BE3: raknet setup_incoming_rpc_hook @in_rpc while true wait 0 end :in_rpc 0BE5: raknet 0@ = get_hook_param PARAM_PACKETID if 0@ == RPC_SCRCLIENTMESSAGE then 0BE5: raknet 1@ = get_hook_param...
  47. ItsRobinson

    Collection

    Majority of servers use local machine time of the server as the in-game time. So for example, if your server has a /time command, it might show a different time than the actual game time. The game time might be 12pm but the server might be in France so it might be 4pm in France and will say 4pm...
  48. ItsRobinson

    CLEO Help how to add loop to script

    {$CLEO} 0000: NOP while not SAMP.Available() wait 400 end 31@ = false while true wait 0 if and 0AB0: is_key_pressed 17 //ctrl 0AB0: is_key_pressed 87 //w then if 31@ == true then 31@ = false chatmsg "autowalk...
  49. ItsRobinson

    Collection

    It uses in-game mechanics to walk to specific coordinates, soooooooooooooooooo :thinking:
  50. ItsRobinson

    Collection

    {$CLEO} 0000: NOP while not SAMP.Available() wait 400 end while true wait 0 if and 0AB0: is_key_pressed 17 //ctrl 0AB0: is_key_pressed 87 //w then if call @is_cp_active 0 then call @get_cp_pos 0 X 1@ Y 2@ Z 3@...
  51. ItsRobinson

    Collection

    As far as I'm aware, you can't? Or at least I don't know how to. I can't seem to get it to avoid running into walls or cars, so, you'll have to see if anyone else knows how to.
  52. ItsRobinson

    Collection

    That dudes encrypted his CLEO and stuff and it's not that great anyway. Made the following real quick, draws the objects on screen, rather than with a blip on the map. It will only work (as with markers) if you're in the steaming area of the object (if you're close to it) Usage: Enable...
  53. ItsRobinson

    CLEO Help Movement Text

    You’d have to move the corona text by searching for the memory address and that would also affect server announcements. Your best bet would be to create a text draw to show for a few seconds when you type test
  54. ItsRobinson

    CLEO Help Editbox

    0B5A: get_screen_res 0@ 1@ 0@ /= 2 //divides resolution to center it 1@ /= 2 0B80: dialog 2@ = create "editdialog" 0B88: dialog 1@ add_editbox id 2@ text "My edit box" pos_XY 0@ 1@ size 300 150 //rest of your code
  55. ItsRobinson

    CLEO Help Move camera back and forth between two points

    And you need help with what exactly?
  56. ItsRobinson

    CLEO Help Prevent vehicle eject by server?

    You would have to use the opcode/memory address to put the player in the vehicle which majority of servers have anti cheats for, so you’d just get banned. You could probably have it so that the player automatically runs back to the truck and gets in. But how much use that would really be, I...
  57. ItsRobinson

    CLEO Help ESP removal from a cleo

    There you go bud
  58. ItsRobinson

    Collection

    I’m intrigued in finding a solution for you now, send me the server IP in a PM and I’ll look into it.
  59. ItsRobinson

    Collection

    For starters 02CE: will return a float, so you should be comparing it to a float value (i.e. 1.0, 30.0) not an integer value. Secondly, if and means that it has to be less than 1 AND higher than 30, which is not possible. Thirdly, you should change it so that inside your 'then' statement, it...
  60. ItsRobinson

    Collection

    Use the cleo @Parazitas has linked and head to where the object has spawned randomly, do it a couple of times and you'll be able to get the coordinates of the one that spawns underground, then filter it out.
  61. ItsRobinson

    Collection

    I can see you're really struggling with your whole object thing. What I would suggest is, make a cleo that will return all the objects coordinates, check to see if they are consistant or within a consistant range. If they are, simply filter out the one you don't want to track.
  62. ItsRobinson

    Collection

    Please be more specfic of what you want. I don't understand what you mean.
  63. ItsRobinson

    Collection

    31@ = false //start cleo deactivated 30@ = Render.CreateFont("Arial", 12, 12) while true wait 0 if 0AB0: key_pressed 57 //keycode for 9 then 0B12: 31@ = 31@ XOR 1 end if 31@ == true then SAMP.GetScreenResolution(0@, 1@)...
  64. ItsRobinson

    CLEO Help Auto select option from dialog

    while true wait 0 if 0B4C: samp is_dialog_active -1 then 0AC8: 0@ = allocate_memory_size 256 0BD8: samp get_dialog_caption 0@ if 0C29: $NOT_USED = stristr string1 0@ string2 "Mission Locations" then 0AB1: @get_list_item...
  65. ItsRobinson

    Collection

    If you're talking about the redeem credits CLEO, just add wait 2000 under the line say "/redeemcreds %s" 5@
  66. ItsRobinson

    CLEO Help Automated key press after keybind press

    http://ugbase.eu/index.php?threads/auto-lmb-at-specific-coordinates.21770/post-127440 take a look at this, just call the function twice and change the key code to the Enter key
  67. ItsRobinson

    CLEO Help Why my games doesn't load.

    Have you got SAMPFUNCS?
  68. ItsRobinson

    CLEO Help [HELP] Textdraw

    30@ = Render.CreateFont("calibri", 10, 5) while true wait 0 if and 29@ == 1 actor.Driving($PLAYER_ACTOR) then SAMP.GetScreenResolution(0@, 1@) //Make this local and continous, just in-case resolution changes. 0@ /= 50 1@ = 250 0811: 4@...
  69. ItsRobinson

    Collection

    http://ugbase.eu/index.php?threads/auto-lmb-at-specific-coordinates.21770/#post-127440 I've compiled it for you.
  70. ItsRobinson

    CLEO Help Auto LMB at specific coordinates

    while true wait 0 00A0: store_actor $PLAYER_ACTOR positon_to 1@ 2@ 3@ //Stores players position 050A: 0@ = distance_between_XYZ 1509.3781 -1667.6798 14.0469 1@ 2@ 3@ //Get distance between player and point (returns float) //Uncomment below to have distance printed to chat...
  71. ItsRobinson

    Horizon Gaming Cash Exploit

    I played HZ for 5 years and I was an admin for 2/3 of them. There’s never been a money exploit. The closest money exploit there ever was, was when one of the admins spawned in millions and sold it to players for IRL dosh. Unless you can find a glitch in a job, which I don’t think it is possible...
  72. ItsRobinson

    CLEO Help [Cleo HELP] - Two params with different variable types.

    :is_gay if SAMP.IsCommandTyped(20@) then if 0AD4: $NOT_USED = scan_string 20@ format "%d %s" $NOT_USED $NOT_USED //Checks format is correct then if 0AD4: $NOT_USED = scan_string 20@ format "%d %s" 21@ $NOT_USED //Stores the int not the string then...
  73. ItsRobinson

    CLEO Help CheckpointCreate.cs help

    You want to PM me a screenshot of your director and your CLEO folder so I can check you've got it all setup right.
  74. ItsRobinson

    CLEO Help RPC

    I tried the same server as you did with the code below, and I managed to catch the RPC everytime. Try my code: {$CLEO} {$INCLUDE SF} 0000: NOP repeat wait 50 until 0AFA: 0BE3: raknet setup_incoming_rpc_hook @in_rpc while true wait 0 end :in_rpc 0BE5: raknet 0@ = get_hook_param...
  75. ItsRobinson

    CLEO Help vest cleo

    Hey it's me :D I really need to rewrite this CLEO :oops: Try this, not tested :rolleyes: {$CLEO} 0000: NOP :Start wait 100 SAMP.Available else_jump @Start 0AF8: samp add_message_to_chat "{FFFFFF}Guardnear - {0085ff}[Credit: Robinson]" :getini 0AF0: 10@ = get_int_from_ini_file...
  76. ItsRobinson

    CLEO Help CheckpointCreate.cs help

    Here you go, just drop the following files directly into your directory (Where your GTA_SA.exe is located) Credits to @monday for the samp_commands.asi
  77. ItsRobinson

    CLEO Help cleo cmd

    CHATMSG "%s" -1 5@ // Debug / logger or whatever we calling it... xD to this say "/redeemcreds %s" 5@ // Debug / logger or whatever we calling it... xD
  78. ItsRobinson

    CLEO Help Timing Issues

    samp.hzgaming.net:7777 Basically the server has a server-sided health bar that messes up and covers your full HUD or just looks terrible for people with different resolutions and widescreen, so I made a LUA mod for the server a few months back and now I'm simply translating that mod to CLEO as...
  79. ItsRobinson

    CLEO Help Timing Issues

    I tried simply just a position check and it seemed to crash or just not delete the text draw, but I’ll give this idea a try in a little while and let you know how I get on
  80. 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...
  81. ItsRobinson

    CLEO Help IF statement always false

    0B35: 0@ = get_last_command_params IF 0AD4: $NOT_USED = scan_string 0@ format "%d %s" 1@ 4@ //IF and SET THEN say "first check" if 1@ > 0 then say "greater than 0" if 0C29: $NOT_USED = stristr string1 4@ string2 "Width" then say...
  82. 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"...
  83. 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...
  84. ItsRobinson

    CLEO Help draw_texture

    Check your PMs
  85. ItsRobinson

    CLEO Help draw_texture

    Yeah it was the amount of memory I was allocating that was breaking everything :) I got it semi-working now, it's loading the textures, but it's displaying the wrong ones. http://prntscr.com/l08eh3 I'm assuming it's something to do with what you mentioned about the "0@ += 4" :LoadPictures...
  86. ItsRobinson

    CLEO Help draw_texture

    I've tried interpolate your way of doing it into my program. It completely broke everything aha. (everything flickers and I can't log in) alloc 20@ 100 0AB1: @LoadPictures 1 20@ This is straight after the check to see if SAMP is available ^ (outside of the loop) //icon 0470: 4@ =...
  87. 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...
  88. ItsRobinson

    CLEO Help Toggle button for this cleo

    {$CLEO .cs} 0000: NOP REPEAT wait 0 UNTIL 0AFA: 0AF8: samp add_message_to_chat "{FFFFFF}AutoAccept - {0085ff}[Credit: Robinson]" 0B34: "av" @CMD /// ACTIVATE and DE - ACTIVE with same command 0AC8: 2@ = allocate_memory_size 258 0AC8: 3@ = allocate_memory_size 258 WHILE TRUE wait 0 FOR 1@...
  89. ItsRobinson

    CLEO Help Auto Guard Cleo

    Your Case Converting is probably on UPPER Make sure you set it to As Is
  90. 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...
  91. 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...
  92. ItsRobinson

    CLEO Help Radar Visible

    Ah that's what was the problem, I was entering the value as 9090 rather than 0x9090 Nice one @springfield
  93. ItsRobinson

    CLEO Help Radar Visible

    How am I supposed to get this into a CLEO though are these addresses not for the mod_sa? @supahdupahnubah @springfield
  94. 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...
  95. 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...
  96. ItsRobinson

    CLEO Help Remove blank spaces/lines

    All that happens when admin's clear chat is it types out many blank lines. So that you can't scroll all the way to the top. Which means the chat is never actually gone. If you head to your Documents > GTA San Andreas Userfiles > SAMP > chatlog.txt You'll find all the chat before the clear in...
  97. ItsRobinson

    CLEO Help [Help] Remove Red Effect

    It's probably drawn using a server-side textdraw, which are possible to remove with CLEO's. You need to figure out the textdraw ID. Using the TXD finder below {$CLEO .cs} 0000: REPEAT WAIT 0 UNTIL 0AFA: SAMP_IS_READY 0B34: "txd" @textdraw WHILE TRUE WAIT 0 END :textdraw...
  98. 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...
  99. 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