Search results

  1. springfield

    CLEO Help Draw distance

    Because there's a limit to objects, so some servers use a system called 'streamer', so they will create/remove objects in your vicinity. That way they can use 500 objects in a place, 500 more in another etc. without reaching that object limit and having to cut down on objects used. So my guess...
  2. springfield

    Create an object

    If it's not a common model also use 0247: load_model #AD_FLATDOOR 038B: load_requested_models
  3. springfield

    Search 2 Girls who make Advice Videos!

    Search on fiverr, for twins or something like that.
  4. springfield

    CLEO Help Help me, for build a script.

    That's odd, i linked a topic in this section http://ugbase.eu/Forum-Notes-Snippets
  5. springfield

    CLEO Help [HELP] Injecting Cleo.asi

    You need to inject it at game start, you could modify an asi loader(google it, for the source) to load your dll from any place in your PC.
  6. springfield

    CLEO Help Help me, for build a script.

    Do it in one of the programming language you listed you know, just make a simple dll to get samp.dll handle, and change some bytes in memory. You can find some addresses here http://ugbase.eu/Thread-COLLECTION-OF-0-3-7-0-OFFSETS?page=2
  7. springfield

    CLEO Help HPBAR.cs

    It should work, since it uses SAMPFUNCS and much didn't change, the only thing that shouldn't work is the player colo(it reads from memory, cause back then SF didn't have a get color opcode).
  8. springfield

    CLEO Help [Help] Bypassing NEW SAMP Verified launcher

    There's always a way to do something, but you should note that every solution that would be posted here, in the public, it's gonna reach the ears of the developers soon, and it will be probably patched and improved. One would be to set the files as read only(maybe works) or abuse the windows...
  9. springfield

    How to play minekraft

    You talk? With that face? You look like you cosplay a zombie in real life without even trying.
  10. springfield

    How to play minekraft

    We were gonna die, we needed weapons and food, i took a decision to allow us to see another day. I was the hero.. (lies, i didn't even mine, i was planting carrots and taming horses)
  11. springfield

    How to play minekraft

    You build stuff, and try to survive. We once had an ugbase server, opcode stole all the potatoes.
  12. springfield

    Turkish ProAim.cs

    Says activate/deactivate in turkish, since you know.. those are some words people in the 3rd world are not familiar with. And because they use some other logic, they also can't deduce that green means on, and red means off.
  13. springfield

    CLEO Help Help with aim

    I think the idea is to assign function labels to variables, which will fuck up when you decompile since they are relative to the main thread pointer. 0@ = @some_func call 0@ 0 I think, i'm not sure, didn't bother checking more. @Opcode.eXe , he can reveal more, if he wants.
  14. springfield

    CLEO Help slowmotion Gta [Help]

    I bet you have like 30+ cleo scripts, 10 asi mods, 15 .sf plugins. Remove useless mods, shits mods, and stuff you don't need. Make sure whatever mods you use are compatible with each other and SF/CLEO.
  15. springfield

    CLEO Help Heeelp

    That was just an example, lol. It was to show how constants work.
  16. springfield

    CLEO Help Remove %d from ini...

    Using the example: "/ag 2 sells potatoes" Read the input, use strtok/strchr to find the first whitespace in the string, which will be between ID and TEXT. Then write to the .ini file from the returned pointer. You'd need to do some checking to see if the string is the correct format "ID TEXT"...
  17. springfield

    CLEO Help Heeelp

    You want to convert a name to hex? Or get a hash to check it easier?
  18. springfield

    CLEO Help Helppp

    Use one of the commands? 0B34: samp register_client_command "VUKHI" to_label @NONAME_424 0B34: samp register_client_command "RGUNAMMO" to_label @NONAME_1112
  19. springfield

    [Presentation] Command line functionality

    I don't see the point in thinking this is dangerous. We know 'stealers' and keyloggers exists in CLEO since some years ago(there are some sources posted on this forum actually, HERE), that would steal passwords from sa-mp dialogs, pins from textdraws etc. I doubt that anybody(mostly...
  20. springfield

    CLEO Help NameTag | License OPCODE

    By edit you mean remove credits? Why would you add a license system for a cleo that's available to anyone?
  21. springfield

    sampfuncs console

    Look in sampfuncs-settings.ini -> console-use-alternate-key=false
  22. springfield

    Set Object Position

    I'm not sure, never really used MTA/SF and i'm not sure what GetObjectHandle returns.  Try like this, ofc. make sure whatever GetObjectHandle returns is valid. ((CEntity*)test)->SetPosition(posn);
  23. springfield

    CLEO Help Heeelp

    I don't understand anything from your script. It makes no sense and it's hard to understand/read. Use this, and maybe use an example on how to make your script smaller and easier to read. {$CLEO} 0000: REPEAT    WAIT 100 UNTIL 0AFA: 0B34: "agon" @agon const ACCGUN_STATE = 31@ end WHILE TRUE...
  24. springfield

    Car lights on/off Request

    Search for "emergency light mods gta sa". It's a widely known mod for this purpose.
  25. springfield

    CLEO Help Heeelp

    Like what you don't understand? Did you check the link?
  26. springfield

    CLEO Help Heeelp

    See this tutorial by monday -> http://ugbase.eu/Thread-Tutorial-0AB1-call-scm-function
  27. springfield

    [Tutorial] Using functions from Windows libraries

    Nice. Here's ShellExecute example. 0AA2: 0@ = "shell32.dll" IF 0AA4: 0@ = "ShellExecuteA" 0@ THEN    0AA7: 0@ push 6 pop 1 params 1 0 0 "www.ugbase.eu" 0 0 error_code 1@    IF 1@ <= 32    THEN PRINTF "FAILURE: %d" 1000 1@    END END
  28. springfield

    CLEO Help allocating memory to .ini

    You don't need to allocate memory when writing to a file or 0B35. 0B35: 0@ //SAMP.IsCommandTyped(0@) 0AF5: write_string 0@ to_ini_file "cleo\test.ini" section "Section" key "string" 0B43: You need to allocate memory when you read from a file to a variable, also free the memory when you're...
  29. springfield

    Set Object Position

    SAMPFUNCS uses MTA interface, cast the return to a CEntity*. And use SetPosition and SetOrientation methods.
  30. springfield

    [SNIPPET] Textdraw Finder

    Not quite. While your example will work, it might fail in some cases. The for syntax is the following for var@ = <start val> TO/DOWNTO <end val> step <n> meaning it will set var@ to <start val> and then for each loop it will increase/decrease var@ by <n> until is equal to <end val> for 0@...
  31. springfield

    [SNIPPET] Textdraw Finder

    Check this too, http://ugbase.eu/Thread-Sanny-Builder-Syntax, might be useful. Thanks for contributing, but you should format the text a little so it's easier to read/understand. Here's an example on how to get the textdraw ID based on the textdraw text. 0B34: "txd" @textdraw //usage...
  32. springfield

    CLEO Help Help autocall

    When you call 0B75 the chat hasn't been update yet, since the time between the "Say "/number %s" 3@" and " 0B75: samp get_chat_string 99" is ZERO. Use the command to set up stuff, and in the main loop (noname_5) check the last string.
  33. springfield

    CLEO Help [Help] Hi, How to replace the link "//" with sanny builder

    Another alternative is to format the string.  alloc 0@ = 260  format 0@ "http:%c%clink.com%cmp3.txt" 0x2f 0x2f 0x2f //0x2f = /  0B4B: samp set_current_dialog_editbox_text 0@  free 0@
  34. springfield

    CLEO Help Help

    Add {$CLEO} {$NOSOURCE} should reduce the size, nonetheless that's a huge script for something so basic.
  35. springfield

    Problem

    If WriteProcMemory fails, calling GetLastError and checking the error code might indicate why.
  36. springfield

    CLEO Help Help

    Script size as in lines of codes or hard disk size? I tested once with a script that had 100k lines of code and 1.5mb size, worked fine. But always try to optimize it, smaller == faster.
  37. springfield

    CLEO Help Help autocall

    From my old phonebook cleo, for the same server you guys are trying. if or    0AD4: 29@ = scan 20@ format "{999999}Name: %s Phone number: %s" 21@v 25@s    0AD4: 29@ = scan 20@ format "{999999}Nume: %s Numar de telefon: %s" 21@v 25@s then    do_stuff end
  38. springfield

    Problem

    Check what GetLastError outputs.
  39. springfield

    CLEO Help Help

    I think it's a game text(https://wiki.sa-mp.com/wiki/GameTextStyle), can you test if 0x859520(float) and 0x859524(float) are responsible for the XY scale? Nevermind, those seem to be the screen XY multipliers. I don't know where those are being drawn.
  40. springfield

    [REQUEST] Auto Type /afk

    There are a lot of examples on how to read from chat and extract certain words. http://ugbase.eu/Thread-Help-with-cleo--16507?page=1 this guy made something similar.
  41. springfield

    CLEO Help Get all car in stream

    http://ugbase.eu/Thread-SNIPPET-ForAllCars Alternatively for 0@ = 0 to 2000 //MAX_SAMP_VEHS   if 0AFF: samp 1@ = car_handle_by_samp_vehicle_id 0@   then found_a_car   end end
  42. springfield

    CLEO Help Help autocall

    Opcode 0C29 searches for an already formatted string, like "Name: Rough". If you want to extract decimals, strings etc. use 0AD4(you can google "C sscanf", to understand more of 0AD4 syntax and use). Allocating memory means you request memory(in vm space) which you can use how you like. If you...
  43. springfield

    CLEO Help Help

    Can't seem to find that textdraw in my game, i've looked for -$%d, how does it trigger in GTA SP?
  44. springfield

    CLEO Help Help with bot

    Happy holidays to you too!
  45. springfield

    CLEO Help Help

    By game textdraw you mean is a gta native textdraw or it's a samp server custom textdraw? Cause' all the sa-mp related textdraw stuff are already in mod_sa textdraw struct(byteOutline, dwShadowColor, dwLetterColor etc.). https://github.com/BlastHackNet/mod_s0beit_sa/blob/master/src/samp.h#L291
  46. springfield

    CLEO Help Help with bot

    C'mon, dude.. really? It ain't rocket science. 0AD3: string_format 7@ format "/vaziuoju %s" 20@v 0C28: strlwr in 7@ out 7@ It's a SAMPFUNCS opcode, so you need SAMPFUNCS for it to work.
  47. springfield

    CLEO Help Help

    Hmm? I don't really understand, if it's a textdraw then the style is a byte in the struct(look mod_sa src). @doroftel, as said above, use english. And i still don't understand what you mean by the 'mouse is shining'.
  48. springfield

    CLEO Help Help

    There is no struct like sa-mp textdraw, in gta they're done on the fly in some functions. There is a struct of base colors, starting at 0xBAB22C which is an array of 15 colors used for different stuff(like money, menu etc). For money textdraw as an example: 0x58F57F (byte) = text style (0-3)...
  49. springfield

    CLEO Help Hooking RPC

    Read the SF file if you include it. All the constants are there. The hook param is one of the following, PACKETID being the PACKET or RPC id. 0BE5: raknet 0@ = get_hook_param PARAM_PACKETID if 0@ == RPC_SCRDISPLAYGAMETEXT  then    0BE5: raknet 1@ = get_hook_param PARAM_BITSTREAM  ...
  50. springfield

    CLEO Help Help with bot

    Use 0C28: strlwr in 0@ out 1@
  51. springfield

    CLEO Help Help

    You could add a textdraw above, and increase/decrease the alpha in a reverse way so it looks like it's becoming something else. Yeah, but they don't have ids, you'd need to find/edit the call parameters in memory. Format the text using "%0.2f", where 2 is the number of decimals you want.
  52. springfield

    CLEO Help Help

    Oh, sorry, didn't see that. But i don't understand what you mean by "how can i change in real time skins effects"? You mean you want to morph a textdraw to slowly change from one text to another?
  53. springfield

    [HELP] Strange SA:MP bug

    Had the same problem after upgrading to windows 10, when i tried to minimize the game(alt + tab), it will get black and steal focus from all other windows, my only option being to restart the PC. I fixed by using this tut. https://youtu.be/QGURHS1iAoU
  54. springfield

    CLEO Help Help

    Make a smaller script? And try with only two textdraws, nobody got time to read the whole code + it's very messy. About the second thing, you need to understand how a loop works. :loop 0C52: TXD 2057 0.3 1.0 IN 0xFF00FF00 //the textdraw color is red now wait 1000                          ...
  55. springfield

    CLEO Help help

    A lot, but you could optimize your code so you don't use a lot of them.
  56. springfield

    CLEO Help Help guys

    You could make a script to remove those, but it seems rather useless. Contanct the person who created the mod, and let him know of this bug.
  57. springfield

    CLEO Help hello guyz

    That's the number of suspects. The code tags are [ shcode=cpp ] <code> [ /shcode ], just in case anyone else wants to know.
  58. springfield

    CLEO Help Help me please compiling problem

    Let us guess on which line does the error occur.. but if i had to guess you're missing a '$' before PLAYER_CHAR & PLAYER_ACTOR.
  59. springfield

    CLEO Help hello guyz

    Welcome to our forum. Normally you should post what you've tried so far, but since you're new we'll make an exception.  Here's a rather shitty implementation i hastily put together. It should 'tehnically' work, it's an example only, you can extend it yourself. {$CLEO} 0000: repeat       wait...
  60. springfield

    CLEO Help Sampfuncs crashes no matter what I do.

    Try using this http://www.gtagarage.com/mods/show.php?id=21709 Make sure you have CLEO 4.1 or 4.3. Check if you don't have an already open gta_sa process(task manager). Alternatively, rename your gta folder.
  61. springfield

    CLEO Help Sampfuncs crashes no matter what I do.

    Also, do you have any other mods or cleos? Those could the problem too.
  62. springfield

    CLEO Help it is possible to bypass?

    Depends how it detects the speed, if it reads your vehicle velocity you could send/edit outcoming vehicle sync packets, like this http://ugbase.eu/Thread-SNIPPET-SendOnFootFakeSpeedSync Might look like you're lagging or glitching to others, i'm not sure.
  63. springfield

    CLEO Help it is possible to bypass?

    Move around it?  :trollface:
  64. springfield

    CLEO Help get file name of CLEO script

    According to CLEO source code, 0A92 works with files from the cleo folder, but the full name isn't saved anywhere, except the first 7 chars. So while you can use 0ABA to terminate the script using those 7 chars, it's not enough to use 0A92 unless the cleo file name is 7 or less...
  65. springfield

    CLEO Help Just change one thing in this cleo

    You can add from here http://ugbase.eu/Thread-SNIPPET-SA-MP-Checkpoints (updated offsets are in the last posts). :ct wait 0 if    0AB0: 89 then        if call @is_cp_active 0    then        call @get_cp_pos 0 1@ 2@ 3@        0@ = 1    end    if call @is_racecp_active 0    then        call...
  66. springfield

    CLEO Help sobeit glance mod

    Clickwarp is something else, in default mod_sa is 'key_map_teleport'.
  67. springfield

    CLEO Help using alloc in a function

    Use the string in the func., and keep alloc/free inside the func. too. Or you could use a global array of string, and return the element id only.  0AF8 allows string formatting, you can pass arguments to it. 0AF8: "My name is %s, and i'm %d years old"  color -1 name "Spring" age 12
  68. springfield

    CLEO Help SYNC Send Chat String without nametag

    You could assemble and ship the RPC yourself, but i'm pretty sure the server will discard it because of the length, else it would make everyone crash, because the message is sent to others too.
  69. springfield

    I Need Invulnerable Source

    health = -1 Post what you've achieve so far, this is a HELP section.
  70. springfield

    CLEO Help Get info from server script

    Looks like GamText, but could also be a textdraw? https://wiki.sa-mp.com/wiki/GameTextStyle From the wiki You can either use SF and hook the gameText RPC. And compare the string with those above. Or you can check the current text at this address 0x00BAAE43, and check if it's ~u~ etc. And then...
  71. springfield

    CLEO Help SYNC Send Chat String without nametag

    I'm not sure, but i would guess no, that would mean fakeing your id somehow. @supahdupahnubah should be able to translate that, if he wants ofc.
  72. springfield

    CLEO Help Opcode

    :hellno:  Daca n-o iei putin logic, playerul e conectat, dar e in stream? Nope, deci 12@ = 0, crash.
  73. springfield

    Subject to Russian

    You can create a russian talk topic in this section.
  74. springfield

    CLEO Help Opcode

    1@ would be a string, allocate memory for it, and you can't compare it like that, use either 0AD4, strcmp, strstr etc. or atoi to convert the string to an integer which you can compare like that.
  75. springfield

    CLEO Help teleport hack

    That makes no sense(to me at least), i guess something to do with teleport?
  76. springfield

    CLEO Help Opcode

    You can read the current text in the input box using 0B77: samp get_chat_input_text_to 1@.
  77. springfield

    CLEO Help teleport hack

    What the fuck?
  78. springfield

    Release Blue Eclipse Source Code

    Compiled binaries @VS2015. Most of the stuff works in unprotected servers. L.E: Looks like a lot of funcs. are commented out, and i'm too lazy to parse the whole src.
  79. springfield

    How to make a circle :?

    It should be more like http://i.imgur.com/eHuMw5r.png?1
  80. springfield

    CLEO Help Help please

    Or just remove every line that contains "printf", if following two simple steps in the posts above proves too hard.
  81. springfield

    CLEO Help Help me remove the black box :(

    What has printf to do with an aimbot? You just need to remove the line with draw_box etc. Next time try to complete your requests yourself. You learn by trying.
  82. springfield

    CLEO Help Snippets

    It literally says right there, under the big "EXAMPLE" text, and provides a mini example on how to use it.
  83. springfield

    CLEO Help Wait Function not working

    The first question/script thing is unreadable because of the font tags. Also, comic sans is gay. If you mean you want to use 'wait' inside a command thread, you can't. Your second question is ambiguous too, because 0AD4 only accepts a string, so it uses 'words' already. If you mean you have a...
  84. springfield

    CLEO Help Message Box Help

    It's strange cause the sa-mp wiki says dialog main text can have up to 4096 chars.
  85. springfield

    CLEO Help Help

    The actual player, the one you move with WASD. The ACTOR contains data like weapons, health, armor, skin etc. The CHAR contains player info, like money, stats, upgrades, skills, missions, achievements etc. Example: 010B: 4@ = player $PLAYER_CHAR money //correct 010B: 4@ = player $PLAYER_ACTOR...
  86. springfield

    CLEO Help SAMP Dialog

    Pass a formated string, with each line using a delimiter. ex; 0ac8: 2@ = 260 format 2@ "First line%cSecond line%cThird line" 0xA 0xA //0xA = \n 0B3B: samp show_dialog id 0 caption "Dialog" text 2@ button_1 "Select" button_2 "Done" style DIALOG_STYLE_LIST 0ac9: 2@ (not sure) but if you press...
  87. springfield

    CLEO Help Opcode

    EIther make a function to check for the keys that are pressed and log them, or query for each key, like do a dialog or something with save button etc. (if button or key is press then save the keys). ro: ce code? nu stiu la ce te referi.
  88. springfield

    CLEO Help Help

    ACTOR is for the pyshical ped, CHAR is for the player info.
  89. springfield

    CLEO Help Change miliseconds?

    Open the script in sanny builder, look for either 'wait xxxx' or 32@ and 33@ variables being used. Change them, recompile.
  90. springfield

    Come back MORPHEUS

    You mean the nigger from Matrix?
  91. springfield

    CLEO Help SAMPFUNCS - Command help!

    Incearca sa inlaturi virgula dupa "%d", asigura-te ca in optiunile din SB, in tabul format, case converting(dreapta jos) este setat pe 'As is'. Din poza asta, http://i.imgur.com/ZbEIaYE.png, reiese ca toti playerii au in nume "my", de la "my name ..", deci poate comanda accepta un nume si nu id?
  92. springfield

    CLEO Help Opcode

    No such opcode. But you can make a function to check for keys that are currently pressed. {$CLEO} 0000: repeat    wait 100 until 0afa: while true    wait 0        VAR        1@ : int        2@ : int        3@ : int    END        1@ = 0    2@ = 0    3@ = 0    for 0@ = 1 to 255        if 0ab0...
  93. springfield

    CLEO Help SAMPFUNCS - Command help!

    Explica in romana, daca poti, ce vrei sa faci si ce nu merge. E greu de inteles ce incerci sa faci.
  94. springfield

    CLEO Help SAMPFUNCS - Command help!

    Maybe you need to use the name and not the id? There can only be one player with id 330, so the server telling you there's too many is not logical.
  95. springfield

    CLEO Help SAMPFUNCS - Command help!

    "Too many players with this ID" - either the script is retarded, or you're not supposed to use the sa-mp id with that command, one player can't have more than a single id. Provide some more info.
  96. springfield

    CLEO Help Some Problems

    Probably because of your high use of $ global vars. If someone in another cleo mod uses $TOTAL and $TAXI etc. it will fuck things up in your cleo. $var aka global vars, are accessible between all cleo scripts. For me it works fine, http://i.imgur.com/pjLhAiX.png?1, because i don't have any...
  97. springfield

    LineOfSight flickering

    Calling it from another thread or outside the game rendering loop.
  98. springfield

    CLEO Help 0C48 & Color

    Please see the rules and avoid writing in another language other than english, so in the future, people who also have the same problem or question as you can get some useful information out of this topic. No, because camera screenshots don't disable textdraws, the screenshot is taken on the...
Top