Search results

  1. P

    CLEO Help [search]adding a script without /q [solved]

    Re: [search]adding a script without /q Because you need sampfuncs sb data, go to this post: http://ugbase.eu/releases/(plugin)-sampfuncs-3-1-by-fyp-(0-3z)/ then download the attachment and: For Developers: - Copy all files from the "SB data" to "/Sanny Builder 3/data/sa".
  2. P

    CLEO Help Get player id

    I think this must work but is not working, if anyone can fix the code then it must send the autopm. Also post a pic of a pm in game and the part of that pm in chatlog.txt because maybe is needed the color of the line. ALT+1 = ON/OFF {$CLEO .cs} 0000: NOP :PEPE_255 wait 0 if and 0AB0: 18 0AB0...
  3. P

    CLEO Help Server dialogs

    I think you must close it with /dialog ID 0 (make it not visible) then if you type /dialog ID 1 (make it visible) then you make it visible, don't closing it with the close button.
  4. P

    CLEO Help [Help] Multicolor text

    The value must be ABGR not ARGB.
  5. P

    CLEO Help Help

    That %D must be %d. Also do this: sanny builder options (F10) - formats tab - Case converting - choose as is - ok - compile and try it.
  6. P

    CLEO Help Get player id

    Put the chatlog line (samp/chatlog.txt) and also a pic if you can, then we can try to do it. If you want an activation key (on/off) or always activated (when the cleo reads the line send something), also tell us that. And yes, there is a snippet to read chat lines (without SF) and an opcode to...
  7. P

    CLEO Help Sync Packet

    I don't know if it's possible with "packets" but if you can weapon hack on the server, and spawn nightvision, i think you can enable it at other players. Some days ago i saw a player spawning a nightvision (i don't know if it was a weapon hack, it was at xsf server), activating it then all the...
  8. P

    CLEO Help 0AF9 Opcode bug?

    Try with that compiled cleo. Also try going to sanny builder options (f10) - formats tab - Case converting - choose as is - ok - compile and try it.
  9. P

    Help gta-samp.exe twice ...

    Using sampfuncs +4.0 you can open two or more "gta_sa.exe". One SA-MP but two or more gta sa. You need to change the settings .ini.
  10. P

    CLEO Help Unknown opcode at

    Upload it as attachment maybe we can decrypt it or we can find the source code.
  11. P

    CLEO Help How to add activator to cs files ?

    What you mean activator? If you mean on/off with same key, read this: http://ugbase.eu/snippets/simple-looping-thread/. You can change that "key_down" with 0AB0: key_pressed VK(virtual key codes). For the other problem (unknown directive) you need sampfuncs sb data (download sampfuncs then...
  12. P

    CLEO Help Question: Color Finder? Detect client message colors?

    Maybe yes, converting that hex to int (cotrol+h). That's all what i know, i never use get or set chat string opcode. IF 3@ == HEX TO INT THEN DO SOMETHING Maybe it works, try it.
  13. P

    CLEO Help Question: Color Finder? Detect client message colors?

    Hmm i don't know how to use that opcode, i use this: 0AC8: 3@ = allocate_memory_size 260 0AB1: call @GETCHATTEXT 1 ID 99 TO 3@ if 0AD4: 4@ = scan_string 3@ format "I'm {FF0000}SEARCHING {0000FF}FOR RED TEXT ON LAST LINE" then 0AF9: "WORKS" end :GETCHATTEXT wait 500 0AB1: call @GETSAMPBASE 0 1@...
  14. P

    CLEO Help Question: Color Finder? Detect client message colors?

    It's because you are searching on LAST LINE (99) so if the cleo doesn't read THE LAST LINE then can't send the command.
  15. P

    CLEO Help Question: Color Finder? Detect client message colors?

    I use this: if 0AD4: 4@ = scan_string CHATLINE/VAR(1@) format "You caught a %s" 5@v then do something %s = 5@v = some text that appears there. Also with 0AD4 you can find text with hex colors. For example "You {FF0000}caught a %s"
  16. P

    Help [HELP] Problem with sinigun.cs

    You are using samp 0.3z R2, try with R1.
  17. P

    CLEO Help [help] Square root

    This? 01FB: 28@ = square_root 18@
  18. P

    CLEO Help Preventing Decompilation

    With HEX (idk how, check THIS post) or using cryptors like t3k cryptor or fyp cryptor.
  19. P

    CLEO Help urgent help

    Replace key_down 99 with 0AB0: 99 Also you will need SAMPFUNCS SB DATA.
  20. P

    CLEO Help Getting started with cleo scripting

    045A: draw_text_1number 621.8 67.0 GXT 'NUMBER' number 0@ 045A: draw_text_1number 621.8 45.0 GXT 'NUMBER' number 1@ 0@ = HEALTH 1@ = ARMOUR 621.8 = X COORD = +RIGHT -LEFT 67.0/45.0 = Y COORD = +DOWN -UP
  21. P

    CLEO Help [REQ] Help to fix it..

    All of that is fine, the problem is I don't know how to find that memory address to make it work well, so the problem is here: (you must change that 0x56 with something which i don't know, also there must be a problem with 0x212AA4) if 0@ == TRUE then // IF IT'S ON THEN WRITE MEMORY VALUE 0xC3...
  22. P

    CLEO Help [REQ] Help to fix it..

    That change to R2, has changed some memory address, i don't know how to find them so thanks to povargek for the s0beit source, i take the memory address from that but i'm not sure if it's SAMP_CHAT_INPUT_INFO_OFFSET or SAMP_CHAT_INFO_OFFSET, i used SAMP_CHAT_INFO_OFFSET. Try it and tell me if...
  23. P

    CLEO Help [HELP] Detect animations then do some commands you want

    Running/moving: if 82A0: not actor $PLAYER_ACTOR stopped then do action or if 00E1:  player 0 pressed_key 16 // run/sprint key, check: F12>SCM Doc.>GTA SA>Keypress Numbers then do action Aiming: if 00E1:  player 0 pressed_key 6 // aiming, check: F12>SCM Doc.>GTA SA>Keypress Numbers then do...
  24. P

    CLEO Help [Help] Key Bind

    No, it's not correct. With WHILE TRUE - END you start and end the LOOP, so :LOOP is not needed (or yes to jump after we activate it then after we use it, deactivate it again with 0), another thing is the command will do nothing because you put it to a label with just return your cmd, you must...
  25. P

    CLEO Help [Help] Key Bind

    It must work, what's the problem? Replace :MAIN with WHILE TRUE and goto @main with END if you use that type of level.
  26. P

    CLEO Help Sending a message to the server

    Working on foot. With car, warnings then crash, problem is this: 03C0: store_car_char_is_in_no_save $PLAYER_ACTOR store_to 10@ 03C0: store_car_char_is_in_no_save $PLAYER_ACTOR store_to 11@ It must be: 03C0: STORE_TO 10@ CHAR $PLAYER_ACTOR 03C0: STORE_TO 11@ CHAR $PLAYER_ACTOR Also there is a...
  27. P

    CLEO Help Sending a message to the server

    The problem is you are writting it with sampfuncs opcodes (so sampfuncs is needed). Check this to write client/server msg without sampfuncs and tell us if you need help: http://ugbase.eu/snippets/write-in-chat-without-sfuncs-(0af80af9)/ Also put all the code, not that part.
  28. P

    [SNIPPET] DrawLine between 2 points

    Re: DrawLine between 2 points I think it's RGBA: color_RGBA 5@ 6@ 7@ 8@ RED 255 GREEN 0 BLUE 0 ALPHA 255 -> FF0000FF -> RED
  29. P

    CLEO Help Reading chat

    I don't know how to use that i use a scm func, but that must be something like this: 1@ = id/number of chatlog line 2@ = the text you got with 1@ 3@ = idk 4@ = chatlog line color (maybe, idk) 5@ = prefix color, maybe {COLOR}? I use this 0AB1: call @GETCHATTEXT 1 id 99 to 3@ to get the last...
  30. P

    CLEO Help How to show variable as text

    {$CLEO .cs} 03A4: name_thread 'test' var $fVar: float = 0.1 end :test_1 wait 0 if     0256:  player $PLAYER_CHAR defined then     $fVar += 0.7     jf @test_1     0AD1: show_formatted_text_highpriority "Float: %f" TIME 200 $fVar     wait 200 end jump @test_1 004E: end_thread Also, first do...
  31. P

    CLEO Help Get player wanted level

    Ok, if the server change white name to orange or dark orange, can we get that numbers of star? Example CNR: if we play we got our name white but if we rob our name change to orange, that is? It must be with SAMP GetplayerColor and then if it's red then draw number 5 if it's orange then draw...
  32. P

    CLEO Help How to show variable as text

    Try doing this: ALL AT SANNY BUILDER: PRESS F10 > Formats tab > Case converting > Choose "As is" > compile and try again. Also for read_memory, read THIS POST. Description: Writes a value to the game memory. Parameters: 1 = memory address (any integer value) 2 = number of bytes to write...
  33. P

    CLEO Help Get player wanted level

    Some replies said it was server sided (our wanted level), but we can get our wanted level at samp with that memory, there is no way to get others players wanted level? with some read_memory? And the problem of 3d text is solved, it was a problem of the loop or the variable of 3d text, solved...
  34. P

    CLEO Help Changing from typing activation to virtual key activation

    What's the problem? :ON_OFF if and 0AB0: 17 0AB0: 50    then     if     15@ == 0     then         15@ = 1         018C: play_sound 1083 at 0.0 0.0 0.0         0ACD: show_text_highpriority "PRO-AIM ENABLED" time 1337     else         15@ = 0         018C: play_sound 1084 at 0.0 0.0 0.0        ...
  35. P

    CLEO Help Get player wanted level

    Is possible to get the wanted level of other players? At samp our wanted level can be checked with this read_memory 0x58DB60 Is there any way or is possible to get others player wanted level? And why i can't destroy a 3d text when i deactivate a command?
  36. P

    CLEO Release [REL]Rapid-Fire Undetected

    Bibiguma Frozt Guru HERE! Activation/Deactivation = rapid (as a cheat for singleplayer) also configurable with the .ini file.
  37. P

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

    Re: supremeTroll + objectFinder monday The problem was the mgfuncs, because it's needed. I installed it but doesn't show the box, just the text (only black and without number, always 0) on my screen. Tested with sf 4.0 and mgfuncs 4.3 and cleo 4.1.
  38. P

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

    Re: supremeTroll + objectFinder bojicha use this attachment, same command. monday Nice work! But i don't know why objectfinder cmds are not working (warnings then gta stop working), just /ohelp. If i'm not wrong, the problem is draw_text, it's for your screen, you need to use 0B6F instead of...
  39. P

    CLEO Help Reload.cs Key

    Try it.
  40. P

    CLEO Help Reload.cs Key

    Attach the cleo script or post the code.
  41. P

    CLEO Help [HELP] SN position + RGB format [SOLVED]

    Re: [HELP] SN position + RGB format Yes, all is ok. 03F0: enable_text_draw >> 1 = enable textdraws (show) 0 = disable textdraws (hide) 0342: set_text_draw_centered >> the name says all, center the text, i don't see the changes but it must center the text. 0340: set_text_draw_RGBA 180 <- R...
  42. P

    CLEO Help [HELP] SN position + RGB format [SOLVED]

    Re: [HELP] SN position + RGB format Try doing this: Press F10 at sanny builder > Formats tab > Case converting > Mark "As is" > Ok > Compile > Try it.
  43. P

    CLEO Help [HELP] SN position + RGB format [SOLVED]

    Re: [HELP] SN position + RGB format Mr.Christmas try using this 0AF8: "X: %0.f Y: %0.f" -1 3@ 4@ instead of 0AD1. It will flood a little the chat but you can use it.
  44. P

    CLEO Help Car pos running [HELP]

    What do you use to store the pos of the other actor? If you are using: 00A0: store_actor $PLAYER_ACTOR position_to $TEMPVAR_FLOAT_1 $TEMPVAR_FLOAT_2 $TEMPVAR_FLOAT_3 Try using this: 04C4: store_coords_to $TEMPVAR_FLOAT_1 $TEMPVAR_FLOAT_2 $TEMPVAR_FLOAT_3 from_actor 215@ with_offset 1.0 3.0...
  45. P

    CLEO Help [HELP] SN position + RGB format [SOLVED]

    Re: [HELP] SN position + RGB format {$CLEO .cs} 0000: NOP while true wait 0 if 0AB0: 49 then 0B5D: samp toggle_cursor 1 0B5E: get_cursor_pos 1@ 2@ 0B5F: convert_window_screen_coords 1@ 2@ to_game_screen_coords 3@ 4@ 0AD1: show_formatted_text_highpriority "X: %0.f Y: %0.f" time 2000 3@ 4@...
  46. P

    CLEO Help How do I put a max/min to this variable?

    Thank you +like i can't give +rep.
  47. P

    CLEO Help How do I put a max/min to this variable?

    I want to put a maximum or minimum to 28@ but i can't, I tried with "for 28@" but is not working, it always remain at 0. I want to put a minimum of 0 and maximum of 14. {$CLEO .cs} 0000: NOP while true wait 0 if 0ADC: "i" then 28@ += 1 04B8: get_weapon_data_from_actor $PLAYER_ACTOR slot 28@...
  48. P

    CLEO Help key press simulation

    http://ugbase.eu/snippets/send-keypress/ http://ugbase.eu/snippets/send-keypress-5701/ You must use the second link (i use it for some cleos with that menu and work fine) for the cleo to auto choose location, i will try to do it, if i can i post it but if not then i don't post nothing. Also...
  49. P

    CLEO Help Load Picture from site

    Download it with: 0D92: 1@ = download_query url 2@ local_file "testfile.html" //2@ = url with "http://" If you want, you can check if it's downloaded: 0D93: download_query 1@ get_state_to 3@ //If 3@ == 0, then file downloaded, if 3@ == -1, then process not ended, other value containt...
  50. P

    CLEO Help [SOLVED][HELP] Anim

    Re: [HELP] Anim First go to http://wiki.sa-mp.com/wiki/Animations and check the IFP, in this case is PARK, below that you can see: Tai_Chi_in Tai_Chi_Loop Tai_Chi_Out Them are the animation names, that's what we need also the IFP NAME (PARK). And you must use: 04ED: load_animation "PARK"...
  51. P

    CLEO Help Multiple commands overwrite the data problem

    How do you have the formats tab (case converting)? Be sure you got it to "AS IS". If all is ok wait for springfield he can help you.
  52. P

    CLEO Help Multiple commands overwrite the data problem

    Try this: if 31@ == 2 then 0AF8: samp add_message_to_chat "%s %s" color 0xFF4800 5@ 6@ end
  53. P

    Possible to change with cheat engine?

    Ok, then no matter, anyway thanks. Moderators/admins can lock the post.
  54. P

    Possible to change with cheat engine?

    Ok, i tried it but with other memory address, in this case the armour bar/white text which is: 0xBAB23C and in Sanny Builder i write it (changing to red) using this: 0A8C: write_memory 0xBAB23C size 4 value FF0000FF virtual_protect 0 // because they are ABGR writting memory. But when i add...
  55. P

    CLEO Help Assign $Player_Actor to variable?

    Or maybe 07D6:  8@ == $GIRLFRIEND // @ == $ (int) but not sure if it works or not.
  56. P

    CLEO Help Quick help about SF 3.0

    Do you have ASI LOADER? And why you don't use SAMPFUNCS 3.2?
  57. P

    Possible to change with cheat engine?

    Thank you, someday i will use it, not permitted to add rep but +like yes. Why you search 058FEC0 when the the health bar color was 0xBAB22C?
  58. P

    Possible to change with cheat engine?

    My english is a shit and i can't understand all of that quote, but I said (and i think the other user refers to Sanny Builder and we can also write the memory, so we can patch it with ollydbg) there are opcodes to do it: 0A8C: write_memory 0xBAB22C size 4 value FFFFFFFF virtual_protect 0 I...
  59. P

    Possible to change with cheat engine?

    Ok, if i make the trainer and i run it, automatically it change the color? but it will be another process on the task manager? So is impossible in part with cheat engine, i want something to "save" it to the .exe. Yes there is some opcodes for write the memory i want it save all the time...
  60. P

    Possible to change with cheat engine?

    I have this memory used on cleo: 0xBAB22C which is of the health bar (color) of gta sa but i want to change it with cheat engine and "save" it. I mean I want to change the color of the health bar with a new color which i put on cheat engine and each time I start the game, the color is changed...
  61. P

    CLEO Release Drive Through walls

    That's not the problem, it's working for me and you don't need sampfuncs.
  62. P

    CLEO Help [help] change color nick name

    springfield why it doesn't work with 0AB1: call @setNickColor 2 id 5@ color 0x00FF00 // must be green but change it to black.
  63. P

    CLEO Help How to write memory with ABGR?

    In the post i put 0AD4 but i don't know why it doesn't work, I try using your code and it's working, idk... And i have one more question, is possible to edit the memory of the time writting a text? With InterfaceEditor you can change the format of the clock to a text you put. EDIT: is possible...
  64. P

    CLEO Help Random Letters and Numbers

    Press F10, go to formats tabs, case converting, choose AS IS, ok, compile and try again.
  65. P

    CLEO Help How to write memory with ABGR?

    ok, thanks. The problem was when I put %x, had to be %X? That was the problem?
  66. P

    CLEO Help [Help] My cleo keybinder not working.

    ... Type keybinder as a cheat for singleplayer, it activate and deactivate with the same "cheat". Activations: key 49 (1), key 50 (2), key 51 (3)
  67. P

    CLEO Help [Help] My cleo keybinder not working.

    There is no problem with it, working for me.
  68. P

    CLEO Help How to write memory with ABGR?

    I understand, how can I "transform" it? Here i write the memory and store it to the ini file: 0A8C: write_memory HUD_1 size 4 value 5@ virtual_protect 0 format 5@v "%X" 5@ 0AF5: write_string 5@v to_ini_file "cleo\hud.ini" section "HUD_1" key "HEX" Now i want to load the game and write the...
  69. P

    CLEO Help How to write memory with ABGR?

    I want to read a string from ini file but when I write the memory with the value it doesn't work. I do this but it doesn't work because the value must be FF+5@v (How can I do that?): 0AF4: 5@v = read_string_from_ini_file "cleo\hud.ini" section "HUD_1" key "HEX" 0AD4: 6@ = scan_string 5@v format...
  70. P

    CLEO Help [help] change color nick name

    I think it's impossible using opcodes, maybe you can use this: 0B44: samp 10@ = create_3d_text "hey kye!" color 2@ position 3@ 4@ 5@ view_distance 6@ show_behind_walls 7@ attached_to_player 8@ attached_to_vehicle 9@ Put your color, text, etc.
  71. P

    CLEO Help Command bug cleo :(

    Or the easiest way: {$CLEO } 0000: NOP wait TIME // if you want 0AF8: "your msg" -1 all the code...
  72. P

    CLEO Help Done

    Re: Possible? Make a text all time changing colour/Rainbow in textdraw If you want it in a loop without sampfuncs: {$CLEO .cs} 0000: NOP 03F0: enable_text_draw 1 while true wait 0 0209: 31@ = random_int_in_ranges 0 255 0209: 30@ = random_int_in_ranges 0 255 0209: 29@ = random_int_in_ranges...
  73. P

    CLEO Help [HELP] 1 command activate other command

    Working for me (tested 2 min ago), try doing this: PRESS F10 > Formats tab > Case converting > As is > OK > Compile and try again. And compile this code i made a fix: {$CLEO .cs} 0000: NOP 0B34: samp register_client_command "s" to_label @varma :loop wait 0 jump @loop :varma...
  74. P

    CLEO Help [HELP] 1 command activate other command

    You want to do this? If I type /s id id id id, execute other command? That is what you want? The id must be between 0 and 1000. Here is the code i think this is what you want: (maybe you must add other condition to SAMP.IsPlayerConnected(5@) i'm not sure) {$CLEO .cs} 0000: NOP 0B34: samp...
  75. P

    CLEO Help [SOLVED] Code.

    Re: [HELP] Code. Maybe this? http://ugbase.eu/snippets/write-in-chat-without-sfuncs-(0af80af9)/ I only know how to use it pressing keys.
  76. P

    CLEO Help [SOLVED] Code.

    Re: [HELP] Code. I'm not TH3RM4L but yes, for example you can add wait 3000 to wait 3 secs after join then send the message.
  77. P

    more tutorials

    All related with dialogs, for example i want to draw a text on dialog with ini file.
  78. P

    CLEO Help fyp ping calcualtion opcode

    That is a snippet u must call the function on your code.
  79. P

    CLEO Help How to type Text when connected to server ?

    Use wait to put the time or don't put nothing to appears after the join. You can use 0AF8: "Pepe" -1 -1 = white, for colors you need use Hex Colors, for example red: 0xFF0000FF
  80. P

    Change Player Health Color

    Download other SA-MP Recolorer 0.3z
  81. P

    Change Health/Money color...

    Search on google for Interface Editor
  82. P

    CLEO Help help teleport

    Use this code, CHANGE X - Y - Z, with your own pos or if you want make it configurable with ini file. Same activation. To find the x y z pos go to the game and type "/savepos cleo" then goto SAN ANDREAS USER FILES/SAMP and search for "savedpositions" and put the coords on the cleo. The txt must...
  83. P

    CLEO Help Sanny Builder - Problem

    Press CONTROL+R and replace ":$" with ":"
  84. P

    CLEO Help [HELP] Activation

    while true wait 0 if and 0AB0: 54 not SAMP.ChatInputOpened() then print "~Y~Hello!" 1500 end end OR {$CLEO .cs} 0000: NOP :A wait 0 if and 0AB0: 54 not SAMP.ChatInputOpened() else_jump @A print "~Y~Hello!" 1500 goto @A I think your code not work.
  85. P

    CLEO Help [HELP] Activation

    add "not SAMP.ChatInputOpened()" if and 0AB0: 54 not SAMP.ChatInputOpened() then ...
  86. P

    CLEO Help Check if dialog is responded.

    How to check until a dialog is responded? The problem is i want to send a message if the dialog is responded if not then wait to be responded.
  87. P

    CLEO Help How to find this type of colour?

    springfield help me now please
  88. P

    CLEO Help Super binder o.o

    Why you don't use 0AF9?
  89. P

    CLEO Help How to find this type of colour?

    What is that 0x72 and how to put that check? Must be something like this? :PEPE_23              SAMP.IsCommandTyped(3@) wait 0 if 0AD4: 29@ = scan_string 3@ format "%s" 3@v  else_jump @PEPE_277 if 0A9A: $hFILE = openfile "checkpoints.ini" mode 0x72 // how to check 3@v here? then 0AF2: 7@...
  90. P

    CLEO Help How to find this type of colour?

    Something like that but that 7@ must check the section 3@v for example "[pepe]" so if it exists then load the checkpoint: 7@ = read string from ini file "cleo\checkpoints.ini" section 3@v <--- check 3@v from the ini file if exist or not if 7@ <> [pepe] // check this, section 3@v from the ini...
  91. P

    CLEO Help How to find this type of colour?

    Help, is possible to check this or not?
  92. P

    Mouse Problem with SAMP

    Download a d3d9.dll and put it on your root gta folder or try upgrade your directx version.
  93. P

    LSPD Chopper Spotlight

    Thanks for release this, for that you can use if and 0AB0: VK H not SAMP.ChatInputOpened() ...
  94. P

    CLEO Help Opcode for sphere + red marker on the radar

    Try using: 0167: 149@(256@,33i) = create_marker_at 50@(256@,33f) 50@(256@,33f) 50@(256@,33f) color 0 flag 2 I think that is what you want.
  95. P

    CLEO Help Sanny builder 3 help?

    Use: 0AB0: 1
  96. P

    CLEO Help [LOCK]Camera question

    You will release this or post the source code? I want it D:
  97. P

    CLEO Help How to find this type of colour?

    No, a check to see if 3@v (/loadcps "%s" = 3@v ) exist. For example /savecps pepe so i need to type /loadcps pepe to load it but if I type /loadcps asd123 it also sends the message but it doesn't exists, here we put the check then doesn't sends the message.
  98. P

    CLEO Help Script not working

    Try: Go to Tools > Options > Formats > check "As is" > OK > Compile again or use http://ugbase.eu/snippets/for-all-peds/ but put a condition if a player if near you then do taze, arrest, cuff i think this work.
  99. P

    CLEO Help How to find this type of colour?

    That's the problem i don't know how to do that. I have this code: if I type /savecps "name" it will save the xyz pos on a ini file called "name" and if I type /loadcps name it will load that pos then create a checkpoint. The problem is when I type /loadcps "example" and if it doesnt exists also...
Top