Search results

  1. shanker

    CLEO Help SF API Documentation

    I didn't know where to post, so just move it, thanks. Is there any SF documentation? If not, I need help with the following things: 1) ActorCurrentCar 2) ForAllCars (from stVehiclePool) 3) ForAllPeds (from stActorPool) 4) IsActorStreamed
  2. shanker

    help - send dialog response

    it was a way when was a dialog from sever, you would send a response to sever and if you activated the mod, the server dialog window would appear again and you could send the answer back to the server ... and so one, that was a tricky way to make insta money from jobs with dialog, someone does...
  3. shanker

    CLEO Help search str1 in str2

    example: str1: [TAG] str2: [TAG]NAME i wanna see if str1 is in str2 and remove str1 from str2. 0c29 doesn't work
  4. shanker

    CLEO Help SAMPFUNCS or asi files are not loaded

    I didn't know where else to post, I just installed Windows 10 on my laptop and all drivers using Driver Booster. The problem is SAMPFUNCS or any other .asi file is not loaded in GTA. I installed SA:MP 0.3.7 R1 and CLEO 4.3 from CLEO.li (the checbox .asi loader was checked). What else should I do?
  5. shanker

    CLEO Help all files from a specific folder

    A snippet to check the name of every file from a specific folder?
  6. shanker

    CLEO Help HELP - reading a string

    @monday let's think I have the following string: alloc 0@ = 260 format 0@ = "me3r3 co0apt3" i want to read char by char from it to output only letters so the output should be: 3303 how can i do that?
  7. shanker

    CLEO Help CROSSHAIRS

    Let's say I have a bundle full with crosshairs. How can I load any crosshair I want from CLEO? I know the crosshair must be converted / inserted into a .txd file, but after that?
  8. shanker

    printf question

    E:G: float S; int N = 5; S = (float) N / 2; std::cout << S; It will output to 2.5 if N was 6, then the output was 3. So, how can i do the same as below with printf? If the number is an integer, how to remove the .00? float S; int N = 5; S = (float) N / 2; printf("%0.2f", S); It will...
  9. shanker

    CLEO Help fAimVec1

    is there any adress to insta convert 3d coords to vectors? need valid vectors from stAimData
  10. shanker

    CLEO Help get the text which you are trying to send via raknet

    I'm trying to edit the text i'm sending to server, like an auto corrector or something like that, but how can i get that text via raknet? I tried to do it in another way: while chat enabled if key pressed enter then get chat input but the problem is that, once i press enter (so the chat...
  11. shanker

    [hundred of snippets]

    i found this on PC hf  :)  if you want to use the cheat,then you cant without deleting that lines which are trying to connect to my db instead of copy paste, use u r brain  :iknowwhatyoudidthere:
  12. shanker

    [snippet]remove digits

    0@ = 0x29 repeat     wait 0     0@ += 0x01     if 0C2A: 2@ = strchr 4@ char 0@     then         repeat             wait 0             0A8C: write_memory 2@ size 1 value 0x90 virtual_protect 0         until 8C2A: 2@ = strchr 4@ char 0@     end until 0@ == 0x39  4@ - text
  13. shanker

    [snippet] lowercase to uppsercase / uppercase to lowercase

    4@ - text :LowerCase_To_Uppercase 0@ = 0x40 repeat     wait 0            0@ += 0x01     if 0C2A: 2@ = strchr 4@ char 0@     then         0085: 1@ = 0@ // (int)         1@ -= 0x20         repeat             wait 0             0A8C: write_memory 2@ size 1 value 1@ virtual_protect 0         until...
  14. shanker

    CLEO Help aim rotation angle

    @springfield, @Opcode.eXe https://imgur.com/a/UQF4Gtx O = target, when i'm on the drawn side, it looks more like a spin bot than a smooth, help what i know is i have to put some conditions if the finalAngle <= UNKNOWN_VAL then finalAngle = UNKNOWN_VAL, right?  0A8D: 0@ = read_memory...
  15. shanker

    groundZ

    any ideea how to get the ground? float GroundZ = 0.0; GroundZ -= 100.0; it only works on cleo  :LOL: :LOL: in c++ it changes my X,Y coordinates but at least i get the ground xd
  16. shanker

    [Snippet] Distance Between Two Points

    :DistanceBetweenTwoPoints 0063: 0@ -= 3@  // (float) 0063: 1@ -= 4@  // (float) 0063: 2@ -= 5@  // (float)    006B: 0@ *= 0@  // (float) 006B: 1@ *= 1@  // (float) 006B: 2@ *= 2@  // (float)        005B: 0@ += 1@  // (float) 005B: 0@ += 2@  // (float)    01FB: 0@ = square_root 0@ ret 1 0@...
  17. shanker

    CLEO Help Hidden characters CLEO

    hello, a rusky contacted me about some hieroglyphs on my mod, I know from where this problem comes but I don't know why he is experimenting this problem a screenshot: https://cdn.discordapp.com/attachments/435433031071694849/435438968637620224/20180416_185802.jpg so what's the problem? I did...
  18. shanker

    Free Multi-Cheat for SAMP [Shanker v3]

    To people who managed to cross the security system: If you succeeded to get the original source, i'd like you to keep it only for you. Why? As this is already a free cheat and anyone can use it without any payment, there's no sense to share it, even if you keep the credits! I do not allow to...
  19. shanker

    CLEO Help convert coords

    I'm trying to convert screen cords (textdraw position cords) to 3d cords so I can call @AIM_AT_POS but is giving me some weird value and Idk why yea it should aim at the same position I m looking(TEST 2 TEXTDRAW = CROSSHAIR POS) at but what I want to do is to compare that position to closest ped...
  20. shanker

    windows 10 asi files are not recognized

    not even sampfuncs.asi is loaded :/ what to do? before i had w7 and all was fine forgot about cleo nvm fixed  :fuck_yea: :fuck_yea: :fuck_yea:
  21. shanker

    help;/

    Five distinct numbers are given. Determine the sum of the top 3 of them. the 5 natural numbers are distinct, ranging from 1 to 10000 inclusive ex: 1 5 2 3 100 output: 108 pb source: https://www.pbinfo.ro/?pagina=probleme&id=559 it gives me only 40 points it fkin works idk why i cant get...
  22. shanker

    [snippet] change dialog position

    with this method you l reach the middle of the box Dialog.AddCheckBox(dialog_id 0@, checkbox_id 0, checkbox_caption "", XY: 200, 5, SIZE: 25, 25) while true     wait 0     if Dialog.IsVisible(0@)     then         if Dialog.CheckBoxIsChecked(0@, 0)         then             0B5E: get_cursor_pos...
  23. shanker

    CLEO Help delete box when loop is off

    03F0: enable_text_draw 1  038E: draw_box_position 325.0 240.0 size 50.0 50.0 RGBA 0 0 0 50 now how can i remove this shit ? ah beer effect sucks #SOLVED :DRAW if 19@ = 1 then 19@ = 0 else 10@ = 1 end cmdret such a pro developer xd
  24. shanker

    CLEO Help interface

    @springfield, the interface has different color compared to textdraws, any idea how to fix it? https://i.imgur.com/miecPuT.jpg             0B67: render a 0xFF r 1@ g 2@ b 3@ to_argb 17@ {actualy there is a loop to make a rainbow}             0A8C: write_memory 0xBAB22C size 4 value 17@...
  25. shanker

    lua parameters

    shouldn't it to show me parameters of any command? i installed moonloader, what else i have to do? @springfield @monday
  26. shanker

    CLEO Release LYRICS

    you can add as many songs as you want  .txt file looks like [VERS 1] Am întalnit o fata, cu trupul perfect ?i suflet de copila Nu purta niciun regret Nu purta nicio vina... Pâna am futut-o ?i i-am facut pizda piscina Am pula mare, am pula mare Vino sa te fut hai pune-ma la încercare Am pula...
  27. shanker

    CLEO Release Fast Reload

    When you press R, this mod will reload your weapon. It's not a cheat, this script just force the original reload system. You can even reload while you'r shotting. You have just to remove the condition if not MOUSE_2 pressed  :iknowwhatyoudidthere: I was bored (no friends  :sadpepe:)  so i...
  28. shanker

    CLEO Release Multi HAX useful for RPG Servers

    Functions: 1.Fast Run  Default Value: 1.23x  Max Value: 2.0x  2.Fast Rotation What it does?  :motherofgod: 3. Fast Reload Unique fast Reload System. I didn't saw it anywhere so yea, #NO-HATE. Any time you press R your clip will be maximized. It's undetectable because the sistem just force...
  29. shanker

    CLEO Help pedstats.dat

    how to get game text string? this is not a txd
  30. shanker

    CLEO Help a little question

                    {REMOVING "-" FROM NUMBER}                 0AF5: write_string 25@v to_ini_file "cleo\Copy_Chat.ini" section "SectionName" key "Organizer.Number"                 0AC8: 16@ = allocate_memory_size 600                 0AF4: 16@ = read_string_from_ini_file "cleo\Copy_Chat.ini" section...
  31. shanker

    CLEO Help nvm

    nvm found how to
  32. shanker

    CLEO Help remove space after strpbrk

    so, is it possible? ^^
  33. shanker

    CLEO Help any cryptor that works on dialogs or ...

    any cryptor that works on cleo scripts that contains dialogs or other shits that can't be crypted? i tried fyp cryptor and another one that i dont remember his name ^^ xd
  34. shanker

    CLEO Help When 0C29 can fail?

    // how .ini looks [SectionName] intKey=1337 aliat.1="Avispa Rifa" aliat.2="Tow Truck Company" aliat.3="SF Taxi" aliat.4="Paramedics" aliat.5="NoClan" aliat.6="NoClan.2" Heal.Jucatori=50 Heal.Aliati=1 Max.Heal=1337                     //  this is my heal system                     alloc...
  35. shanker

    how to gather 2memory'

    it's a c++ console aplication #define CPED                  0xB6F5F0 #define INFINITE_HEALTH       0x42   ReadProcessMemory(handle, (PBYTE*)(CPED + INFINITE_HEALTH), &value, sizeof(value), 0); it returns me 196608, what the heck is taht? not even in cleo i have dont know how to  read this...
  36. shanker

    CLEO Help qu3sti0n /h3lp

    if the bastards bypassed @SendUnOccupiedVehicleSync is there any method how to trick  it? or any other methods to teleport cars?
  37. shanker

    SF CRASH

      Problem signature:   Problem Event Name: APPCRASH   Application Name: gta_sa.exe   Application Version: 0.0.0.0   Application Timestamp: 427101ca   Fault Module Name: SAMPFUNCS.asi   Fault Module Version: 0.0.0.0   Fault Module Timestamp: 57a85cd7   Exception Code: c0000005   Exception Offset...
  38. shanker

    CLEO Help 0B8F:

    if and   Dialog.CheckBoxIsChecked(4@, 10)    3@ == 0 then     // Draw Textdraws     if and        0818:   actor $PLAYER_ACTOR in_air       0AB0:   key_pressed 0x04     then 25@ = 1     end     if 25@ == 1     then 0B8D: samp set_cursor_mode 2     if 0AB0:   key_pressed 0x01     then        ...
  39. shanker

    CLEO Help shi*y op multi hax

    while true wait 0 if 3@ == 1  // MainThread  then      0B8D: samp set_cursor_mode 2     0B86: samp dialog 2@ set_visible true     else if 3@ == 0         then          0B86: samp dialog 2@ set_visible false         0B86: samp dialog 4@ set_visible false         0B86: samp dialog 5@ set_visible...
  40. shanker

    c++ standard functions

    here i used _(kbhit()) func and yes it works well in a win32 app int main() { bool _IsRunning = true; while (_IsRunning) { _SA->LoadSAMP(); _SA->IsAvailable(); // comenzi _IsRunning = false; } bool isKeyboardPressed = true...
  41. shanker

    CLEO Help any method how to shut down my pc through cleo

    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  42. shanker

    CLEO Help get player id by knowing his name

    simple but hard :/ i tried all methods that have gone through my head can someone brighten me?   alloc 0@ 36 format "Name" 0@ 0B2B: samp 2@ = get_player_id_by_actor_handle 0@ free 0@
  43. shanker

    CLEO Help Memory Adresses

    Hi :) Does anyone know how to create Weapon Hack with memory addresses in CLEO? I can not find them anywhere, I googled them, I tried to find them with Cheat Engine, and I just know how to change the "bullet value" (actually only this i need) p.s: i dont care about cleo opcodes 0563...
  44. shanker

    CLEO Help hourglass

    im trying to render something and i find a problem if anyone is afk that rendered image[ex afk's id / name / hp etc ] will move as it wants , how to check if anyone is away from key board or he have the hourglass on?
  45. shanker

    CLEO Help distance aiming

    is there anyway to change aiming distance?  051A:   actor 1@ damaged_by_actor $PLAYER_ACTOR 051a not working, i tried in the below script to make a mod which telling me distance between me and the target, it will not working if distance > 49.9 {$CLEO} wait 69 ms 0b34: "dist" to @distance...
  46. shanker

    CLEO Help help

    {$CLEO} :NONAME_02 WAIT 0 MS 0B34: "Find" TO @Find 0B34: "FindON" TO @FindON WHILE TRUE  WAIT 0 MS   IF 0@ == TRUE     THEN     alloc 1@ = 360     0B75: samp get_chat_string 99 text_to 1@ prefix_to -1 -1 -1     WAIT 200 MS     IF       0AD4: 2@ SCAN 1@ "%*s says: Am dat find pe %d" 4@    ...
  47. shanker

    CLEO Help Heeelp

    this nigga script make me look mad     {$CLEO}        :NONAME_02    WAIT 0 MS        :NONAME_03    WAIT 0 MS     IF 8AFA: NOT       THEN JUMP @NONAME_03    END        0B34: Create Command "AgON" to @AgON label    0B34: Create Command "SgM4" to @SgM4 label        0C6A: 1@ = new thread at...
  48. shanker

    [SNIPPET] Textdraw Finder

        {$CLEO}     :Noname_02                      /* This snippet has been created by Shanker :) Enjoy RPG.B-Zone.Ro (RO/EN) */     WAIT 0 MS     :Noname_03     WAIT 0 MS     IF NOT SAMP.Available       THEN       JUMP @Noname_03     END          0B34: Create Command "FindTXD" to label...
  49. shanker

    CLEO Help Help

    {$CLEO .cs} 0000: NOP thread "LSSI" if not 0@ = SAMP.Base() then 0A93: end_custom_thread end while not SAMP.Available() wait 100 end wait 100 0af8: "TXD Editor by Popica & Shanker. | Scrie /txdr." -1                           0b63: "txdr"      0B34: samp register_client_command "txdr"...
  50. shanker

    CLEO Help Textdraw ID

    How can I find all ID of server Textdraws? Im working at smt but I dont know how can I Find the next textdraws: Name,Speed,odometer,status like in the next screen: http://imgur.com/a/xqxsB hope someone will help me soon  :PPFFH:
  51. shanker

    CLEO Help help

    How Many then/end I can use in one loop?
  52. shanker

    CLEO Help Little Help

    {$CLEO .cs} /* Source: http://www.versuri.ro/artist/gjdj_colinde-de-craciun.html */ 0000: NOP :Noname_2 0001: wait 0 ms  13@ = 1000 :Noname_6 0256:   player $PLAYER_CHAR defined  004D: jump_if_false @Noname_492  0B34: samp register_client_command "Colinde" to_label @Colinde 0B34: samp...
  53. shanker

    CLEO Help Opcode

    Sanny Builder has an opcode that  recorded what I write? Ex, I Write in Chat /69 so script will say "cmd 69". I tried do something with FOR function but without succes :). That is:
  54. shanker

    CLEO Help Wait Function not working

    IF Script is Same like: $CLEO :N untill 0afa: 0b34: cmd @DD :Noname_03 wait 0 jump @Noname_03 :DD  script .. wait xY MS wait will not working anymore, just if I remove :Noname_03 and script must be "updated" for it , can some one tell me how to fix it...
  55. shanker

    CLEO Help Opcode

    Is there  an opcode that tells me the combined keys? (an example i press q+r) or I need it do manually with 0AB0? there's to many keyboards and will take a lot lel :))
  56. shanker

    CLEO Help Some Problems

    Hi, why 0B37: samp 2@ = get_player_color 1@ is not running at all people? for an example, i did an script "online server players", it is working at me perfectly but at some people no, they don't get the value of X players there is two screenshots: http://imgur.com/a/JxzTD ( maded by me ,and...
  57. shanker

    CLEO Help 0C48 & Color

    $P_1 = 152.0 $P_2 = 438.0 :Shanker_Test   wait 0   SAMP.IsCommandTyped(1@)   0AD4: 2@ = scan_string 1@ format "%d %d %d" 3@ 4@ $HP   00D6: if    0B23:  samp is_player_connected 3@    004D: jump_if_false @ERROR   0B36: samp 6@ = get_player_nickname 3@    if   4@ == 5   then say " /f %s [%d]...
  58. shanker

    CLEO Help Help with 0092

    Actor.StorePos(0@, 1@, 2@, 3@) Actor.StorePos(PLAYER_ACTOR$, 4@, 5@, 6@) 050A: 7@ = distance_between_XYZ $TEMPVAR_1@ 2@ 3@ and_XYZ 4@ 5@ 6@ 0092: 8@ = float 7@ to_integer if 8@ <= 5.0 then SCRIPT not working, idk why, can anyone tell me why?
  59. shanker

    CLEO Release Troll Production SAMP.cs [ Heal People & Give DMG ]

    Hi. I must Tell it: Idea with Heal/ Damage all Streamed Zone comes from kcmds (/splayers) I'm Comming Here with two Little Functions which Shanker.cs V 1.07 will Include when this will be Published :) This Hack will Not Working on Sv. with Good Anti Cheat !!! I Tested it just on My Server...
  60. shanker

    CLEO Release Shanker.cs [ New Multi Hack for SAMP ]

    The Best Multi Hack which is in a public! Credits: Shanker ( Scripter ) & D4N1 ( Helper & Tester ).   What is containing? A lot of functions, like: - Advanced Anti Kill - No Drugs Effect // Inspired by TH3RMAL & Linearity from UGBASE.eu - Undetectable Ammo - Full Invulnerable - Wallhack -...
  61. shanker

    CLEO Release Shanker.cs [ New Multi Hack for SAMP ]

    The Best Multi Hack which is in a public! Credits: Shanker ( Scripter ) & D4N1 ( Helper & Tester ).   What is containing? A lot of functions, like: - Advanced Anti Kill - No Drugs Effect // Inspired by TH3RMAL & Linearity from UGBASE.eu - Undetectable Ammo - Full Invulnerable - Wallhack -...
  62. shanker

    CLEO Release Shanker.cs [ New Multi Hack for SAMP ]

    Im Sorry for bad English, this is not my own language, I hope you will Understand this thread.  The Best Multi Hack which is in a public! Credits: Shanker ( Scripter ) & D4N1 ( Helper & Tester ).   What is containing? A lot of functions, like: - Advanced Anti Kill - No Drugs Effect //...
Top