Search results

  1. springfield

    [SNIPPET] GET/SET Vehicle Handling Values

    It GETs the currently loaded handling.cfg in memory, so the one from samp.saa.
  2. springfield

    Posible CLEO MENU

    There are SF console commands( threads <status> ). Or you can look in CLEO source, to get the address and struct for each thread, loop through them, pause them etc.
  3. springfield

    CLEO Help How to take another player id?

    Put the question in the main thread, not the title, and use your brain.
  4. springfield

    CLEO Help I need a little bit of help! Just a little bit.

    You can also put yourself near the door, 04C4: store_coords_to 4@ 5@ 6@ from_actor $PLAYER_ACTOR with_offset -1.0 0.0 0.0 0362: $PLAYER_ACTOR 4@ 5@ 6@
  5. springfield

    what is the best server to hack in?

    samp.ugbase.eu
  6. springfield

    CLEO Help Opcode Help

    From the wiki, it's the other way around, 0 - instant quit, 1 - timeout. http://blast.hk/wiki/opcodes:0b28?s[]=0b28
  7. springfield

    CLEO Help how can i revert this shit scoreboard layout?

    Looks like a custom mod, normally, even if you'd have used a custom sampgui it would show the numbers of players and server name, and it wouldn't change player colors, i suggest you check your mods?
  8. springfield

    CLEO Help Help with Unlimited range marker

    For "0B2F: samp get_streamed_out_player_pos" to work, server must have minimap markers enabled for players already, which in this case(creating another marker) seems redundant.
  9. springfield

    [HELP] IP-Grabber for SAMP

    Maybe you want to get the server ip/location?
  10. springfield

    CLEO Help [ Private ] Vehicle Recording by Opcode Help

    Look for timers used(32@, 33@). And some comparison like "if 32@ > 300" etc.
  11. springfield

    CLEO Help Get player ID.

    You already have the player ID, 21@ contains the ID you've used in the /glg <id> command. Your question is vague, try adding more details or a concrete explanation.
  12. springfield

    CLEO Help lagshot calculations and how it works??

    That make sense, if it's just prediction then something 100% accurate it's hard to pin point. By getting delayed updates and not accounting for them(your ping) the calculation would be wrong, or at least not current with the player you're shooting at.
  13. springfield

    CLEO Help Help, i search 3DTextLabel finder!

    Use something like this, use command /find3dtext <part of text> to find all 3d labels that contain that text around you, and use /tele3dtext <label id> to teleport to it. {$CLEO} 0000: repeat wait 100 until 0afa: 0b34: "find3dtext" @labels 0b34: "tele3dtext" @teleport while true...
  14. springfield

    does a hard drive get heavier the more data it holds ?

    Yes, @mistery mom's porn weights more, cause she fat af.
  15. springfield

    CLEO Help Help, i search 3DTextLabel finder!

    with SF it should be rather easy for 0@ = 0 to 2048 if 0B46: samp 3d_text 0@ defined then 0C46: samp get_3d_text_info_by_id 0@ string_ptr 1@ color 2@ position 3@ 4@ 5@ view_distance 6@ show_behind_walls 7@ attached_to_player 8@ attached_to_vehicle 9@ //compare...
  16. springfield

    CLEO Help Help

    That's odd, it should work as expected. Does typing and calling/gmode yourself works? Maybe the command is not registered? Check in the SF console by using 'chatcmds'.
  17. springfield

    CLEO Help Help

    Is gmode a client or server command?
  18. springfield

    CLEO Help Help

    It wouldn't be any difference, what are you trying to achieve/do?
  19. springfield

    APP Release Fast Screen

    Should be saved in the same place as default, for some users it doesn't work(images aren't saved), i have no clue why.
  20. springfield

    CLEO Help Decrypte cleo file.

    Did you open/drag the file?
  21. springfield

    CLEO Help Help about Address Memories

    To get CPed base value use, 0A96: 0@ = actor $PLAYER_ACTOR struct, where $PLAYER_ACTOR is the handle for you actor(ped). By adding the offset 0x42 to 0@( 0@ += 0x42 ), 0@ now contains the memory address of the ped flags, you can use writeMem opcode, or cleo bit set/clear opcodes to do stuff...
  22. springfield

    CLEO Help Select dialog list item problem

    You're closing the dialog with button 1, which is "Close", you want to use 0B47: samp close_current_dialog_with_button 0 to close the dialog with the "Select" button, so button 0 = "Select" button 1 = "Close"
  23. springfield

    CLEO Help Finding Address and printing string in beginning

    Addresses are absolute memory address, offsets are relative to a base address. By noping those function memory offsets, you're blocking the game from processing those events(shake cam, etc).
  24. springfield

    ASI version of this

    Use sensfix.asi by slice(i think?) you can adjust it(i think).
  25. springfield

    CLEO Help Black screen on samp

    Maybe it's a server thing? Try on samp.ugbase.eu. Other than removing your cleos to see WHICH ONE actually causes this, there's not much you can do.
  26. springfield

    CLEO Help SAMPFUNC colors

    Heeeeeeey, that's my color. It uses ARGB.
  27. springfield

    BULLET CRASHER 0.3.7 R2

    You can suck my noddle anytime.
  28. springfield

    girl problem

    Or don't tell them you have a kid.
  29. springfield

    girl problem

    And what's the problem?  :computerguy:
  30. springfield

    CLEO Help weapon limit address

    Look in snippet section.
  31. springfield

    C++ wait before calling a function in a SAMPFUNCS plugin

    That means it waits for the command func. to return, so you can't really wait there. Use a timer class, toggle a bool etc. and call the command from the main loop.
  32. springfield

    [REQ] Improved weapon's hit range

    SA-MP uses their own weapon.dat, so edits to the actual weapon.dat file won't do anything. You need to either use a custom loader, like SAA2 or any mod_sa. Or edit it in memory, there's a cleo snippet http://ugbase.eu/Thread-SNIPPET-WeaponDaT-function But it can be used in anything else, since...
  33. springfield

    CLEO Help The SAMP.Blabla function

    Did you use "{$INCLUDE SF}"? To include sampfuncs defines, else DIALOG_STYLE_MSGBOX is not defined to a number, and SB will ignore it resulting in 5 actual parameters used, instead of 6.
  34. springfield

    CLEO Help The SAMP.Blabla function

    Use code tags to separate code from your text, cause it's hard to read and understand. My guess, you forgot to use an id here, 0B3B: samp show_dialog id 333 "dialog help!" You can find all the classes functions by going to your SB install folder\data\sa, and open the classes.db with any...
  35. springfield

    CLEO Help Car Collison

    099A: set_car 35@ collision_detection 0 ?
  36. springfield

    CLEO Help RPC

    Probably because of this 0AC8: 2@ = allocate_memory_size 260 0C29: 2@ = stristr string1 1@ string2 "Did you get it?" You should read the text size first, then read it as an array to a variable. Then use stristr on it, since it returns a pointer, not the string itself.
  37. springfield

    CLEO Help SAMP SENT BULLET DATA LOGGER

    Do it yourself, this is not a request/begging section.
  38. springfield

    CLEO Help Why are we not able to request CLEOs anymore?

    Too many useless requests and/or impossible/stupid ones. 60%, or more, of requests could be solved by using a simple search. There's no point in solving requests, nobody needs to spend their time if the person requesting can't spend theirs. CLEO is easy and by asking for help/guidance in...
  39. springfield

    CLEO Help vehicle disappear (unstream)

    Try without any mods first? Could be server related, and if so you need to report it as a bug on their forums.
  40. springfield

    CLEO Help Write Memory Defaul

    Read the default value first, then write your value ( 2 ). When you want to undo it, write back the first value.
  41. springfield

    CLEO Help pulling out serverside bar

    Loop through all, check which is the one that display the bar, there should be 3( boxes, one for health, one for background and one for the stroke effect). Some useful opcodes 0C53: samp textdraw 0@ get_box_enabled 1@ color 2@ size 3@ 4@ 0C5E: samp textdraw 0@ delete
  42. springfield

    CLEO Help Problem - Can't enter in the car

    Odd, never heard of such problem with SAMPFUNCS, try updating to last version, and remove the settings ini, let it restore it by default.
  43. springfield

    CLEO Help Unstreamed objects

    Load the object model using 0247, 038B. Then create the object using "029B: 0@ = create_object #MODEL at X Y Z".
  44. springfield

    CLEO Help Problem - Can't enter in the car

    Remove the cleos, see if the problem persists, if not, add them one by one to see which is causing it.
  45. springfield

    Compiling blue eclipse

    Could be VS 2017, post some of the errors, not much to go on. AFAIK it requires some custom ssl libs for something.
  46. springfield

    Am i allowed to litrally spam to get stars?

    Justine. You literally gain nothing.
  47. springfield

    CLEO Help Problem with INI reading

    Allocate enough memory for variables when reading strings -> 4@, 5@, 7@, 8@
  48. springfield

    CLEO Help Need get3DCoordsFrom2DScreenXY

    Depth of the world, ie: how far from the camera.
  49. springfield

    CLEO Help Need get3DCoordsFrom2DScreenXY

    0B55: convert_3D_coords 1@ 2@ 3@ to_screen 4@ 5@ 0B8F: convert_screen_coords 1@ 2@ depth 3@ to_world_3d 4@ 5@ 6@ cpp impl which you can adapt to cleo if you don't want to use sf.
  50. springfield

    [SNIPPET] Perfect crosshair pos

    Yep, works fine when converting to int. Add that to the main post, i would've never though of that.
  51. springfield

    [SNIPPET] Perfect crosshair pos

    This should work too, but less code and gets right position for sniper also. I don't know why but the one you posted doesn't work for me using a simple script. :get_xhair_pos 0A8D: 0@ = readMem 0xC9C040 sz 4 vp 0 //x screen 0A8D: 1@ = readMem 0xC9C044 sz 4 vp 0 //y screen if 02D8: actor...
  52. springfield

    CLEO Help Help with Cleo

    Well, if you wait 15 seconds ofc you'll disconnect. Do something like this wait 100 0B28: samp disconnect_with_reason 500 //500 = quit 0AF8: samp add_message_to_chat "{FF0000}[RECONNECT]:{FFF700} Reconnect after {FF0000}15 {FFF700}seconds." color 0xFFF700 wait 15000...
  53. springfield

    CLEO Help Scan chat message for specific keywords?

    assuming 0@ == chat line if 0C29: 1@ = search in_string 0@ this_string "hello" then printf "found hello in chat" 100 end
  54. springfield

    CLEO Help Game Speed in CLEO not working

    0A8C: writeMem 0x00401196 sz 4 val 0.5 vp 0
  55. springfield

    CLEO Help How to activity this Cleo please?

    Changes the gta sa window name to "samp name (samp id)". I guess it's for nothing, i don't see a use for such a thing.
  56. springfield

    CLEO Help Help editing this .CS

    Open the script and find opcodes along the line of (actor xx perform_animation, actor task, actor goto, etc.) those being opcodes to instruct a ped to move, do a task etc.and just remove them.
  57. springfield

    CLEO Help Scan chat message for specific keywords?

    strstr, search substring in string, basically check if a string contains another string, word etc. 0C29: 2@ = stristr string1 0@ string2 1@
  58. springfield

    CLEO Help Help with Cleo

    Disconnect first. 0B28: samp disconnect_with_reason 500 //500 = quit wait 1000 0B27: samp set_gamestate 1 //wait connect wait 1000
  59. springfield

    CLEO Help Solved

    RE: Teleport to NAN(NOT A NUMBER)!! How do you teleport? Using function might clamp the value, write directly to memory.
  60. springfield

    CLEO Help Solved

    RE: Teleport to NAN(NOT A NUMBER)!! Imaginary number, aka sqrt(-1).
  61. springfield

    [SNIPPET] Read the text with Google's Voice

    So much arguing for nothing, if it's broken why not try to fix it? Bing has a translator maybe it will work with that?
  62. springfield

    CLEO Release Roleplay Vision for Samp 0.3.7

    For that bug to work, you need the weapon in hand(goggles). This script doesn't affect other players, it only triggers the nv/uv vision for yourself.
  63. springfield

    CLEO Help Closed

    RE: Help with this code I don't know if there's a way to detect it, never tried. But i know there's no updates from the spectating player, neither is he streamed, so lookin' for the ped is no help.
  64. springfield

    CLEO Help Closed

    RE: Help with this code There is no player actor created for the spec person, so searching for the closest ped, near ped etc. doesn't help with anything.
  65. springfield

    Need help simulating keys using memory addresses

    But there's no difference between "*(WORD*)(0xB73458 + 0x22) = 255;" and "pPad->NewState.ButtonCircle = 255;". AFAIK, you need to do it in the same thread as the game engine, by hooking some random func. before key processing.
  66. springfield

    CLEO Help Long strings

    Should be useful, i guess scanning for a nickname(and those can be a max. of 24)
  67. springfield

    CLEO Help Cleo help

    0AA2: 0@ = "kernel32.dll" 0AA4: 1@ = "ExitProcess" library 0@ 0AA5: 1@ nparams 1 pop 0 _ec 1 Make it a func, and call it when you want to fast exit the game.
  68. springfield

    CLEO Help PedSlotsUsed help

    Kinda, if you need it for a quick something, will break in next sa-mp versions so loopin' through peds is more 'future proof'.
  69. springfield

    CLEO Help PedSlotsUsed help

    samp.dll + 0x174210 = NumOfPedSlotsUsed - 1(your ped) = PedSlotsUsed.
  70. springfield

    CLEO Help Long strings

    You should post an example of what doesn't work for you. The limit for a string in the SB IDE is 255, meaning a string between quotation marks can't be longer than 255 symbols/chars. 0AD4 can only extract strings to @v vars, so that means you can only extract strings that are limited to 16...
  71. springfield

    CLEO Help spec info?

    ^ i know the same, server doesn't send your those updates, it doesn't stream the player for you, so there's no updates from that player. If you somehow can do get those coords through some server command, game mode glitch, use 00EC: actor $PLAYER_ACTOR sphere 0 near_point 1812.369 -1929.922...
  72. springfield

    CLEO Help Aimbot Detect on Global Wars in UIF

    Nothing you can do, it's not automatically, an admin will spec you, and if they think you're cheating you'll be blocked from entering /dm areas.
  73. springfield

    CLEO Help Server sets me paused

    Not really, what triggers that? Maybe you can 'skip' it.
  74. springfield

    CLEO Help about asi plugins

    Create a new DLL Project in VS. Do your mod whatever, and just rename the .dll to asi so the game can load it automatically.
  75. springfield

    CLEO Help cleo string scan help

    You need to use 0AD3, to format a string with custom parameters.
  76. springfield

    Reflective Bump Map in ENB 0.248+

    There was a plugin made by a russian, i don't know if works on all sa-mp versions tho, http://ugbase.eu/Thread-bumpMap-plugin
  77. springfield

    CLEO Help Cleo keeps crashing, need a little help

    I think you do need a handle, not an object id, according to http://gtag.gtagaming.com/opcode-database/opcode/0471/
  78. springfield

    Detection for aimbot

    This list is longer even than what i assume the FBI uses for digital forensics.  How long does it take to even, run, check all those programs?  I would limit the internet connection to 10kb/s so their teamviewer moves and works like utter shit :PPFFH: .
  79. springfield

    CLEO Help 0AD4: crash

    6@ would be the string, 0AD4: 10@ = scan_string 6@ format "%d %d %f" 8@ 9@ 15@ 0AF3: write_float 15@ to_ini_file "cleo\WaTTiProject.ini" section "OTHER" key "rip"
  80. springfield

    CLEO Help Samp addon

    Yes, it's possible.
  81. springfield

    Release Blue Eclipse Source Code

    Then why even post in this topic, you useless faggot? I'll close this topic, there's no reason to follow up with requests for the source if the OP decided to remove it.
  82. springfield

    CLEO Help I want to make aimbot.

    There's a func. in MTA that does that and it doesn't require calling internal functions etc. Click here!. So it's mainly multiplications and some memory reading, D3DXMATRIX is an array of 4x4 floats.
  83. springfield

    CLEO Help CLEO compiler removes comments

    It's visible when you open the file in any text editor also.
  84. springfield

    CLEO Help CLEO compiler removes comments

    What SB version do you use? If you use {$NOSOURCE}, remove it, and the compiled script will have the original source code(comments included) embedded. You can't compile comments if that's what you want, alternatively every time you compile a script the source is saved in the same folder as...
  85. springfield

    CLEO Help Detect/Read/Add

    It's not a good idea to open the file and read from it everytime you get a chat message. So, first thing first, open the file once, read the last line once, then in the message hook, compare the new line with the old line, if they don't match, write the new line to file(open the file with...
  86. springfield

    CLEO Help Detect/Read/Add

    I don't understand anything, you can use 0AAB to check if a file exists, alternatively you can pass 'at+' flag to file open, to append text to the file, and create the file if it doesn't exists already. File.Open("cleo\test.txt", "at+")
  87. springfield

    Create an object

    Cause you need to instruct SB to compile it as a cleo script, make sure the first line is {$CLEO}
  88. springfield

    CLEO Help Help with cleo

    3@ contains a pointer to the allocated memory, if the strcmp compare fails(dialog caption is not 'AFK') new memory will be allocated on the same variable, and the previous pointer will be lost, thus the previous allocated memory won't be freed. This one wouldn't use SAMPFUNCS, since you'd be...
  89. springfield

    CLEO Help Help with cleo

    And to lose 3 more lines(cuz y not), if the text is smaller than or equal to 7 chars we can use  0@s = 'Taip' 2@s = 'AFK' without allocating memory, also.. free 3@ should be in the same context as alloc 3@ alloc 3@     if condition     then do_stuff     end free 3@ Nice stuff, someone should...
  90. springfield

    CLEO Help Help with cleo

    Normally strings are null terminated, so they end with a 0 in memory -> "0x55, 0x66 ... 0x00". That's how most C string function understand where a string ends.  So, if a variable holds the address of the text start then you can use most functions like strlen, strcpy, strncpy on it, without...
  91. springfield

    Create an object

    Use 069B: attach_object 88@ to_actor 38@ with_offset 0.0 0.5 -1.0 rotation 0.0 0.0 0.0
  92. springfield

    CLEO Help Help with cleo

    Pressing enter should work too, since it will close the dialog with button 0(left).
  93. springfield

    Create an object

    Search here : http://dev.prineside.com/en/gtasa_samp_model_id/search/?q=gate
  94. springfield

    CLEO Help Make [.exe] out of [CLEO]

    Alternative is to inject the cleo script, but you'd still need CLEO and whatever other dependencies that CLEO has, like SF etc.
  95. springfield

    CLEO Help Something wrong.

    Works fine for me.. 0B37: samp 12@ = get_player_color 1@ Here you should use 7@, which is the ID. Result:
  96. springfield

    CLEO Help [CLEO] Don`t want press "down arrow key"

    Those are game keys, use this 0C72: set_virtual_key 40 down true //down arrow wait 10 0C72: set_virtual_key 13 down true //enter wait 10 0C72: set_virtual_key 40 down false 0C72: set_virtual_key 13 down false
  97. springfield

    CLEO Help [HELP] Job per payday

    Not really, search for bugs in the game mode, like try quitting the job and join again, maybe they reset the limit.
Top