Search results

  1. S

    1

    I have been using these for a while and decided to share because there is a rare CLEO in there that I do not ever want to lose. If my computer gets a virus, I will always still have access to these files so it is why it is to be shared. Here are some of the things included...
  2. S

    CLEO Animations Script

    This is incomplete but I'm giving it away someone continue it and blah blah blah I have other things to do  :dont_care:
  3. S

    CLEO Help Anyone know how to use if car is near & onfoot then...???

    OMG. I think that I get it now. It's thinking that I have a specific car in-mind: 0203: actor $PLAYER_ACTOR near_car 1@ radius 5.0 5.0 flag 0 on_foot When you use this and you put near_car 1@ it's checking if car 1@ is near-by right? But that's not what I want to do. Ugh. I'm actually...
  4. S

    CLEO Help Anyone know how to use if car is near & onfoot then...???

    Nope that works. I just didn't put the whole code b/c. I know it works. I just added this part (the if doesn't execute) and I know that's what doesn't work.
  5. S

    CLEO Help Anyone know how to use if car is near & onfoot then...???

    Here's the current script: if 0@ == 70 then if //SNIPPET: Will use soon: 09B3: get_car 5@ door_status 11@ 0203: actor $PLAYER_ACTOR near_car 1@ radius 5.0 5.0 flag 0 on_foot then 0AF9: samp say_msg "Near." end 0AF0: 1@ = get_int_from_ini_file "cleo\kbult.ini" section "kb" key "unislimit" wait...
  6. S

    CLEO Help Is there a way to check if you're in an interior in CLEO? (any interior)?

    Thanks. I'm not sure if it actually works. The server that I tried it on, I think they have a psuedo-interior where it's not an actual interior. But thanks. It seems to work. May try later in a different scenario!
  7. S

    CLEO Help Is there a way to check if you're in an interior in CLEO? (any interior)?

    Is there such a way and how would you do it? I really want this snippet. It'd be nice. If player is in interior ...
  8. S

    CLEO Help *SIGH* How can I make my keybind script shorter?

    I tested it. Thanks a lot. I really appreciate it. May use in the future or may use as a reference in the future. [hr] Thanks a lot. May consider for loops in the future but they are a bit 'eeky in CLEO.
  9. S

    CLEO Help How do I compare two strings easily to see if they're equal?

    Works! Oh my! It works, hurray! Hip hip hurray! I used this snippet: 0AC8: 2@ = allocate_memory_size 128 0AD3: 2@ = "Testing, testing, one-two-three." //Format string. 0AF9: samp say_msg 2@ 0AC9: free_allocated_memory 2@ //Free! Now the variable really records the strings and I can do...
  10. S

    CLEO Help How do I compare two strings easily to see if they're equal?

    OK I have tried to use it w/local vars. 0@-31@ however Sannybuilder doesn't let you compile if you assign them to strings, so like if I do 0@ = "Hi!" then Sannybuilder would not allow it. I also don't know how to use : 0A8C so I can't comment on that. Do you know of an easy way or a way for...
  11. S

    CLEO Help How do I compare two strings easily to see if they're equal?

    For some shit reason, they don't work at all. Ugh. Here's my current fix: if 0@ == 99 //Activation then 0AC8: 1@ = allocate_memory_size 260 0AF4: 1@ = read_string_from_ini_file "cleo\kbult.ini" section "ivswitches" key "s0" 0AF9: samp say_msg 1@ if 0C14: strcmp string1 1@ string2 2@v // Case...
  12. S

    CLEO Help How do I compare two strings easily to see if they're equal?

    I need help in an issue that I'm having. CLEO is being retarded w/the variables: if  0@ == 99 //Activation then 0AC8: 1@ = allocate_memory_size 260 0AF4: 1@ = read_string_from_ini_file "cleo\kbult.ini" section "ivswitches" key "s0" 0AF9: samp say_msg 1@ 2@v = "hi" 4@v = "bye" if  0C14: strcmp...
  13. S

    CLEO Help How do I compare two strings easily to see if they're equal?

    This snippet is in a label: if 0@ == 99 //Activated? Then execute function! then 0AC8: 1@ = allocate_memory_size 260 0AF4: 1@ = read_string_from_ini_file "cleo\kbult.ini" section "connectmgr" key "state" 0AF9: samp say_msg 1@ if 1@ == '/connect' //Note that I tried " and it led to the same...
  14. S

    CLEO Help How can I make a cmd. like /spawncar (ID is in my .INI) work? It always crashes!)

    Wow, it worked! It was the AS IS thing which has been bugging my GTA_SA. Oh man. What a simple thing. Thanks man, thanks you guys! =)
  15. S

    CLEO Help How can I make a cmd. like /spawncar (ID is in my .INI) work? It always crashes!)

    Hmm...  It doesn't seem to work? What does %d do? Here's what I have for my snippet: SAMP.IsCommandTyped(0@) 0AF9: samp say_msg "/help" 0AF0: 1@ = get_int_from_ini_file "cleo\car.ini" section "models" key "id0" 0AF9: samp say_msg "f %d" 1@ SAMP.CmdRet I did that as a test and this is what...
  16. S

    CLEO Help How can I make a cmd. like /spawncar (ID is in my .INI) work? It always crashes!)

    I just need help on a portion of it because it's the portion that doesn't work. 0AF0: 0@ = get_int_from_ini_file "cleo\car.ini" section "models" key "id0"  0AF9: samp say_msg "/spawncar " 0@ I need help quickly and this seems to be very easily fixed. Anyone have an idea? I'm not very good at...
  17. S

    CLEO Help *SIGH* How can I make my keybind script shorter?

    It seriously seems like my keybind script is long. I want it to be shorter. The problem is, I don't know how to make it shorter. Like seriously. Can somebody help me? Guide me in the right direction? I've been at this for like 1-2 days now and every time that I try to make it shorter, it either...
  18. S

    CLEO Help How to read from .ini string, can anyone help?

    OK, it took forever and like 329432948239 tries but I finally found the problem and the solution to it. You have to allocate size for the string(s) and character(s) within and it seems like it has to be done ALWAYS. Here is a snippet of my fix: :KBind wait 0 0AC8: 0@ = allocate_memory_size...
  19. S

    CLEO Help How to read from .ini string, can anyone help?

    This is my .ini file: [kb] unislimit=1000 [msgsnormal m0= /stats m1= /help This is my cleo file: {$CLEO .cs} 0000: repeat wait 40 until 0AFA: is_samp_structures_available :Main wait 0 if and 0AAB: file_exists "CLEO\kbult.ini"   056D: actor $PLAYER_ACTOR defined   jf @Main   if and  ...
  20. S

    CLEO Help Simple keybind script that randomly bans you (bug)???

    What the flying fuck! It works. OMG, thanks a lot man - you saved my script right there <3 Works. I can't believe such a small detail overlooked can make the script not work. I didn't even notice, you have sharp eyes thanks! :cool:
  21. S

    CLEO Help Simple keybind script that randomly bans you (bug)???

    Yes, everything in my cleo folder works but this.  Can you test it on your computer for me and tell me if it works for you? I attached it in my previous post on here!
  22. S

    CLEO Help Simple keybind script that randomly bans you (bug)???

    No, it literally has me banned on every server. Also, no server has key-checks because that's client-sided and no server wants to ban keybinds. Here's my current CLEO script: {$CLEO .cs} 0000: repeat wait 50 until 0AFA: is_samp_structures_available :Main wait 0 //if and //0AAB: file_exists...
  23. S

    CLEO Help Simple keybind script that randomly bans you (bug)???

    OMG, I found the problem. It's SAMP say that's the problem. It's making the game (SA-MP) think that I'm banned when I'm not. Why is this happening? This is my current CLEO now: {$CLEO .cs} 0000: :Main wait 0 //if and //0AAB: file_exists "CLEO\kbult.ini" if 056D: actor $PLAYER_ACTOR defined jf...
  24. S

    CLEO Help Simple keybind script that randomly bans you (bug)???

    I'm not flooding the server. I just checked and removed some of the stuff so that it's really simple. There are jumps and else if's that are protecting it from flooding the server. So why isn't it working and being bugged instead? New code to verify (it still doesn't work, shows "You're banned...
  25. S

    CLEO Help Simple keybind script that randomly bans you (bug)???

    I have a cleo script that when I try to use it - it bans me from the game. But the server didn't ban me. If I have this CLEO script in a server, it makes a fake-ban or like it where it says "You've been banned from this server." But I know it's fake b/c. when I don't have the CLEO, I can connect...
  26. S

    CLEO Help Taze nearby player is not working!!!

    Solved, fixes current issue. Thanks a lot!
  27. S

    CLEO Help Taze nearby player is not working!!!

    That's not the case. The cleo fails to check for nearby players. I tested it and it said "Player not available" or something in another cleo. It fails in checking for nearby players so is there a working method? This method was made/created in 2014 so it's been 2 years , the way that it checks...
  28. S

    CLEO Help Taze nearby player is not working!!!

    I thought it should work but it doesn't work. {$CLEO .cs} 0000: :Main wait 0 if and 056D: actor $PLAYER_ACTOR defined 0AB0: key_pressed 101 jf @MAIN 0AB5: store_actor $PLAYER_ACTOR closest_vehicle_to 0@ closest_ped_to 1@ if 056D:  actor 1@ defined jf @Main 2@ =...
  29. S

    Cops & Robbers Nearby Player Keybind

    * Name of the mod (if the mod doesn't exist, you don't have to tell one): CnR Naerby Player Keybind * Where you saw it (not the server, we mean if you saw any videos/screenshots about it or not): I saw some cleo mods. on this but they're very old and outdated & most of them don't work like they...
  30. S

    Untagged Release SobFoX Project v0.0.0.4

    Does the spec. invisible makes admins. not able to spec. you? What happens if admins. spec. you on spec. invisible? What about invisible underground?
  31. S

    Untagged Release SobFoX Project v0.0.0.4

    Does the spec. invisible makes admins. not able to spec. you? What happens if admins. spec. you on spec. invisible? What about invisible underground?
  32. S

    Untagged Release GLANCE M0D 0.3.7 | Former "private" mod

    Hey, can one of you explain the random part about the aimbot? (aimbotfailurerate, maxaimbotfailurerate) ??? Does it mean it flips a random number from 1-whatever number? The feature doesn't seem to work and it seems like you miss more times...
  33. S

    CLEO Release CLEO Animations Script

    This is incomplete but I'm giving it away someone continue it and blah blah blah I have other things to do  :dont_care:
  34. S

    CLEO Help HOW DO I SCRIPT commands (very simple cmd to display text)

    I tried! It doesn't work: {$CLEO .cs} //-------------MAIN--------------- 0000: NOP thread "SUGAR" wait 3000 0B34: samp register_client_command "manims" to_label @UGBASE_60 0B34: samp register_client_command "mbibi" to_label @UGBASE_102 :UGBASE_49 wait 0 goto @UGBASE_49 :UGBASE_60  ...
  35. S

    CLEO Release LagTroll.cs - troll other players

    tps me to car i troll wtf?
  36. S

    Untagged Release supremeTroll(16-01-15) + objectFinder 1.3++

    Re: supremeTroll CMDS don't work. Do we need something to be able to use this?
  37. S

    [SEARCHING] Making a video, need actors/etcs.

    I am actually feeling sad for you 2, trying to get my attention?  :urtheman: This thread is rly an extra, I already have a few potential actors and if not - could get more. Also if you're not too stupid to read, I also had an option to pm me, not just post in this thread.
  38. S

    [SEARCHING] Making a video, need actors/etcs.

    Requirements: *Must be able to understand Medium-English. *Must be able to differentiate and understand commands/orders given. *Must be willing to cooperate and work but not be very annoying. Here is my previous work(s): https://www.youtube.com/watch?v=J3hWYbBmGQs&feature=youtu.be Reply on...
  39. S

    Elsa visits NGG and decides to do some OP. roleplay.

    Shots fired: :watchout:
  40. S

    Elsa visits NGG and decides to do some OP. roleplay.

    https://www.youtube.com/watch?v=J3hWYbBmGQs&feature=youtu.be Elsa+1 :dont_care:
  41. S

    I am looking for NGRP DM/HACK CREW

    send pm or post if interested thx
  42. S

    [INFO NEWS] RIP OPCODE.EXE :'(

    He is dead?
  43. S

    CLEO Release MassiveKill.cs Troll and kill players!!!!!!!!!

    Flapjack. I sent you a PM, please read it as soon as possible! PLEASE!
  44. S

    CLEO Release [REL/SE] SA-MP DayZ Weapon Hack FINAL

    Re: [SE] SA-MP DayZ Weapon Hack If you want to play DAYZ with me pm me w/your skype this is gr8 but more fun if we playw/each other!
  45. S

    CLEO Release AFK-GHOST.cs - leave your body...

    Can this stream players from far away? Because mine doesn't do that.
  46. S

    CLEO Release NGRP armor hack works 2014/04/23

    Don't release it public then, make everyone pm you for it and make them do a survey or something/video to get the hack.
  47. S

    CLEO Release NGRP armor hack works 2014/04/23

    Does it actually work?
  48. S

    Untagged Release FasterCBug.eXe

    This shit is virtually useless b/c it does not do the c-bug correctly for you. I recommend not using it - it will get you banned, no doubts.
  49. S

    CLEO Release NR_serv

    How do I use the C-Bug function?
  50. S

    NGRP Gamemode

    Can you guys actually post the scripts/gamemode since you say it is not the best?
  51. S

    CLEO Help .SPEC .ini from OPCODE does not work!

    NVM IT WORKS NOW: Solution: Set Folder to allow writing permission and folder admin to administrator so it can write to folder.
  52. S

    CLEO Release [/.SPEC] Spectate Players

    Can you help me? When I start the game it does not give me a .spec.ini file and so I cannot make it stick to player? PLEASE HELP ME, what did I do wrong?
  53. S

    CLEO Help .SPEC .ini from OPCODE does not work!

    I have .SPEC.cleo in my gta_sa folder but when I start the game it does not make a .SPEC ini file and I cannot make it stick to player? Please help? Opcode? Anyone? Can you make for me a sticktoplayer cleo or something? Or fix this for me?
  54. S

    NGRP Gamemode

    bigben give it for free please.
  55. S

    NGRP Gamemode

    Can we make a deal then? Contact please give me your skype please I want NGRP script and I CAN'T FIND IT ON GOOGLE - I SEARCHED 4 hours.
  56. S

    When you type a cleo command ingame does it get sent to server?

    I'm using a cleo mod. that has an illegal command will it go into the server logs? I don't want admins. to find out, will it go in server logs?
  57. S

    NGRP Gamemode

    Alright, can you give me the edit w/out viruses & a working one?
  58. S

    NGRP Gamemode

    I am looking for any NGRP gamemodes if anyone has - must be virus-free and able to use, anyone?
  59. S

    CLEO Help SA:MP Ninja Jump?

    I saw this jump mod on youtube: GTA SA - Naruto Jump v2 +New WallRun (Walk on wall) New mod 2013 It looks very cool, but how would you use it? And can people see you using it on SA:MP? LOL, I bet it's useful for Roleplay Servers well anyways here it is, but I don't know how to use it. Credit is...
  60. S

    SAMP API

    LOL YOU WANT API programming ok: [youtube:34yy1hlz]http://www.youtube.com/watch?v=k6U-i4gXkLM[/youtube:34yy1hlz]
  61. S

    CLEO Help SAMPFuncs Documentation?

    Is there any SAMPFUNCS documentation on what opcodes does what?
  62. S

    NGRP Exploits/Tricks

    THATS WHAT IM SAYING sherlock :xD: :xD::xD:
  63. S

    NGRP Exploits/Tricks

    tell me faction door eXPLOIT IN PM DO NOT RELEASE HERE only pm else admins patch
  64. S

    Stream Hack[SO you can TP to anyone/FIND anyone]

    bump 2 we need this for /find hack and /teleport hacks
  65. S

    [HELP]Who is the real hacker

    GO AWAY WE ARE NOT LETTING OUR HACKERS GET BAN PERIOD.
  66. S

    Stream Hack[SO you can TP to anyone/FIND anyone]

    I am looking for a streamer hack where it streams everyone in the map with a press of a button and it can be disabled with a press of a button - is it possible?
  67. S

    Does Silent Aim make you look like a hacker?

    Okay but do they see you aiming at them if you are aiming at them on your screen? And shooting them? Answer yes or no please.
  68. S

    Does Silent Aim make you look like a hacker?

    On other people's screen are you aiming at them and shooting them or standing still and a bullet is hitting them? Please help.
  69. S

    [Release] s0nicTz project 0.37 (Beta v0.2)

    Re: [Release] s0nicTz project 0.37 (Beta v0.1) this shit is good thank you fuck yeah
  70. S

    Searching for hackers who play NGRP

    I am looking for hackers so we can form a small team maybe? Pm ig name.
  71. S

    ALL OF UGBASE: Show up at NGRP and HELIBLADE Veterans' Day

    Re: ALL OF UGBASE: Show up at NGRP and HELIBLADE Veterans' D yeah explain cuz ngrp is way more advanced than those servers
  72. S

    ALL OF UGBASE: Show up at NGRP and HELIBLADE Veterans' Day

    Re: ALL OF UGBASE: Show up at NGRP and HELIBLADE Veterans' D How do you bypass NGRP's login, I heard it cannot be bypassed?
  73. S

    ALL OF UGBASE: Show up at NGRP and HELIBLADE Veterans' Day

    http://www.ng-gaming.net/forums/showthr ... s-Day-2013 Look! This is a good opportunity for heliblading and hacking - What hack should we use!? :troll: :troll::troll:
  74. S

    Roleplay Pack(For SA:MP Roleplay Servers)

    It is your gta sa that is causing the problem. It works fine for me so reinstall gta sa, cleo, and samp and it should work!
  75. S

    Roleplay Pack(For SA:MP Roleplay Servers)

    Re: My Roleplay Pack Try using anti-crash and it should work or remove all your cleo files and only put the ones in the pack. INSTRUCTIONS: I have been using these for a while and decided to share because there is a rare CLEO in there that I do not ever want to lose. If my computer gets a...
  76. S

    Roleplay Pack(For SA:MP Roleplay Servers)

    Re: My Roleplay Pack There is no recon + change nick in the file? What do you mean?
  77. S

    Roleplay Pack(For SA:MP Roleplay Servers)

    Re: My Roleplay Pack To use Important TP: You use /sp[Save The Position you are at] and then /ls [Name of the Position that you saved and it will teleport you back there] Example: /sp Mall /lp Mall [It takes me to the mall... and you can have 1000 positions.] Admin Friend Checker - /admins and...
  78. S

    Roleplay Pack(For SA:MP Roleplay Servers)

    Saved. In it: Invisible etcs. SHIFT + ) = DAMAGE INFORMER( If you damage someone, a DING is heard! ) Or: I have been using these for a while and decided to share because there is a rare CLEO in there that I do not ever want to lose. If my computer gets a virus, I will always still have access...
  79. S

    CLEO Release 1

    Extract all of it to your CLEO folder.
  80. S

    CLEO Release 1

    I have been using these for a while and decided to share because there is a rare CLEO in there that I do not ever want to lose. If my computer gets a virus, I will always still have access to these files so it is why it is to be shared. Here are some of the things included...
  81. S

    Untagged Release SAMP Ping aimbot.

    Does this aimbot work good?
  82. S

    Untagged Release How to hack weapons on SOME Servers.

    Patched for NGRP.<<<<<<<<<<<<<<<<<< & if it's not patched for NGRP, how do you do it for NGRP?
  83. S

    I need Trollbeit 0.3x

    IT DOES NOT WORK ANYMORE b/c the installer broke.
  84. S

    I need Trollbeit 0.3x

    OMFG, it was released - ffs.
  85. S

    I need Trollbeit 0.3x

    Does anyone have? Please give, all downloads are dead.
  86. S

    CLEO Help Opcode to display text on screen?

    Hey, what is the opcode to display text on screen?
  87. S

    Give me Trollbeit 0.3x in zip please.

    TR-UPDATER has virus and I don't trust it. https://www.virustotal.com/en/file/c061 ... /analysis/ Please give me a zip version, I do not want to open TR - UPDATER it has too much viruses.
  88. S

    Super lag creator that is undetected?

    Any lag.cs that can spawn cars in one location and lag server really hard?
  89. S

    Help Fucking NGRP has Sobeit Hack Protection now!

    Does not work!
  90. S

    Help Fucking NGRP has Sobeit Hack Protection now!

    IT doesn't work i'm pretty sure they are not that stupid i just tested ur method
  91. S

    Help Fucking NGRP has Sobeit Hack Protection now!

    "...please uninstall Sobeit.." it says it on fucking NGRP when you try to login - is any possible fix for this? FUCK! :( :(:(
  92. S

    CLEO Help [HELP]Model Invisible

    IT IS VERY NICEEE +
  93. S

    Help I need a bot that can connect to RP SERVERS.

    So no bots can do this or what are you trying to say here?
  94. S

    Help I need a bot that can connect to RP SERVERS.

    I tried RAKSAMP but when I connect it always closes the connection - anyone have bot that can connect to rp servers and spawn? I need one please!!!
  95. S

    Untagged Release Project S0nictz for 0.3x!

    Thank you let me try this.
  96. S

    Help RAKSAMP does not work.

    Thanks style[RX] helped me hes very helpful
  97. S

    Help RAKSAMP does not work.

    Help me please, anyone?
Top