Search results

  1. Parazitas

    CLEO Help Is possible to do this?

    posible.
  2. Parazitas

    CLEO Help Trigger sound by chat message

    Working with any samp {$CLEO .cs} 0000: REPEAT WAIT 1000 0A8D: 0@ = readMem 0xC8D4C0 sz 4 vp 0 UNTIL 0@ == 9 // SAMP_IS_READY 0AB1: @get_samp_version_id 0 _returned: id 1@ 03CF: load_wav 17802 as 1 // load sound while true wait 0 if 0256: player $PLAYER_CHAR defined then // Command...
  3. Parazitas

    Untagged Release Auto Login

    You should try AutoLoginV4.1.cs version which is without SAMPFUNCS and working any SAMP
  4. Parazitas

    CLEO Help How I Can Make Hud Editor Mode With Cleo

    i don't know anything about your mobile games..
  5. Parazitas

    [CLEO] Some snippets

    Chat String Type: 2 - text + prefix 4 - text (server msg) 8 - text (debug) 0.3.7 - R1 :getChatStringType { 0.3.7 - R1 0AB1: @getChatStringType 1 ChatID 99 _Returned: Type 0@ 2 - text + prefix 4 - text (server msg) 8 - text (debug) } IF 0AA2: 1@ = "samp.dll" THEN 1@...
  6. Parazitas

    SAMP Get Player ID Using Actor Handle

    0.3.7 - R3 :SAMPGetPlayerIDByActorHandle { 0.3.7 R3 IF 0AB1: @SAMPGetPlayerIDByActorHandle 1 _ActorHandle 0@ _Returned: ID 31@ } IF 0AA2: 31@ = loadlib "samp.dll" // GET_SAMP_BASE THEN 31@ += 0x26E8DC // SAMP_INFO_OFFSET[0] 0A8D: 31@ = read_memory 31@ size 4 virtual_protect 0 //...
  7. Parazitas

    SAMP Get Player ID Using Actor Handle

    0.3.7 - R2 :SAMPGetPlayerIDByActorHandle { 0.3.7 R2 IF 0AB1: @SAMPGetPlayerIDByActorHandle 1 _ActorHandle 0@ _Returned: ID 31@ } IF 0AA2: 31@ = loadlib "samp.dll" // GET_SAMP_BASE THEN 31@ += 0x21A100 // SAMP_INFO_OFFSET[0] 0A8D: 31@ = read_memory 31@ size 4 virtual_protect 0 //...
  8. Parazitas

    CLEO Help Help with textdraw of timer

    You can use My old made code source. Without SAMPFUNCS 0.3.7 - R1 {$CLEO .cs} 0000: NOP REPEAT WAIT 1000 0A8D: 31@ = readMem 0xC8D4C0 sz 4 vp 0 UNTIL 31@ == 9 // SAMP_IS_READY 0AA8: call_function_method 0x6A0050 0xC1B340 num_params 1 pop 0 'CRED098' 30@ 0AA5: call 0x718600 2 pop 2 30@...
  9. Parazitas

    [CLEO] Some snippets

    OPCODE: 0AFA: is_samp_available Without SAMPFUNCS REPEAT WAIT 1000 0A8D: 0@ = readMem 0xC8D4C0 sz 4 vp 0 UNTIL 0@ == 9 // SAMP_IS_READY Usage Example: {$CLEO .cs} 0000: REPEAT WAIT 1000 0A8D: 0@ = readMem 0xC8D4C0 sz 4 vp 0 UNTIL 0@ == 9 // SAMP_IS_READY 0AD1: "Game Loaded" 1337 while...
  10. Parazitas

    [READ] Before posting!

    Hi visitor, This section is only for " CLEO Snippet threads ". This section is mainly for posting snippets which users can use to develop their own cleo, for example " Draw line snippet ". !! Do not post any releases, help, requests or tutorials&guides threads in this section. !! If you...
  11. Parazitas

    CLEO Help Getting text from a listitem

    Well you can use this one if you working without SAMPFUCNS. https://ugbase.eu/index.php?threads/some-snippets.20983/page-3#post-130929 Fresh made snippet :isDialogResponded { 0.3.7 - R1 0AB1: @isDialogResponded 0 _Returned: ID 0@ Type 1@ ListboxItem 2@ Button 3@ Text 4@ InputText 5@...
  12. Parazitas

    [CLEO] Some snippets

    OPCODE: 0B3C: samp is_dialog_responded id 1@ button 2@ list_item 3@ input_text 4@ Without SAMPFUNCS, added much more returns, see below.. 0.3.7 - R1 :isDialogResponded { 0.3.7 - R1 0AB1: @isDialogResponded 0 _Returned: ID 0@ Type 1@ ListboxItem 2@ Button 3@ Text 4@ InputText 5@...
  13. Parazitas

    [CLEO] Some snippets

    NOPs Mute / Freeze Server chat 0.3.7 - R1 :MuteServerChat { 0.3.7 - R1 0AB1: @MuteServerChat 1 State TRUE } IF 0AA2:31@ = "samp.dll" THEN 31@ += 0xC050 IF 0@ == TRUE THEN 0A8C: write_memory 31@ size 1 value 0xC3 virtual_protect 1 ELSE 0A8C: write_memory 31@ size 1 value...
  14. Parazitas

    [CLEO] Some snippets

    Disable Default ScreenShot key (F8) Take ScreenShot with any key you want, read below from link.. https://ugbase.eu/index.php?threads/some-snippets.20983/page-2#post-128032 0.3.7 - R1 :DisableTakingScreenShotWithF8 { 0.3.7 - R1 0AB1: @DisableTakingScreenShotWithF8 1 State TRUE } IF...
  15. Parazitas

    [CLEO] Some snippets

    With this snippet you can make your own command or just read what you sent to server from chat box.. etc... 0.3.7 - R1 :GetLastSentTextFromChatBox { 0.3.7 - R1 0AB1: @GetLastSentTextFromChatBox 0 _Returned: Command 0@ Text 1@ } if 0AA2: 2@ = "samp.dll" then 0A8E: 3@ =...
  16. Parazitas

    PM

    PM
  17. Parazitas

    SAMP Get Vehicle ID using Car Handle

    :SAMPGetCarIDFromVehicleHandle { 0.3.7 - R4 if 0AB1: @SAMPGetCarIDFromVehicleHandle 1 _VehicleHandle 0@ _StoreCarID 1@ } if 0AA2: 31@ = load_dynamic_library "samp.dll" // pSAMPBase then 31@ += 0x26EA0C 0A8D: 31@ = read_memory 31@ size 4 virtual_protect 0 // stSAMPInfo if 31@...
  18. Parazitas

    SAMP Get Vehicle ID using Car Handle

    :SAMPGetCarIDFromVehicleHandle { 0.3.7 - R3 if 0AB1: @SAMPGetCarIDFromVehicleHandle 1 _VehicleHandle 0@ _StoreCarID 1@ } if 0AA2: 31@ = load_dynamic_library "samp.dll" // pSAMPBase then 31@ += 0x26E8DC 0A8D: 31@ = read_memory 31@ size 4 virtual_protect 0 // stSAMPInfo if 31@...
  19. Parazitas

    SAMP Get Vehicle ID using Car Handle

    :SAMPGetCarIDFromVehicleHandle { 0.3.7 - R2 if 0AB1: @SAMPGetCarIDFromVehicleHandle 1 _VehicleHandle 0@ _StoreCarID 1@ } if 0AA2: 31@ = load_dynamic_library "samp.dll" // pSAMPBase then 31@ += 0x21A100 0A8D: 31@ = read_memory 31@ size 4 virtual_protect 0 // stSAMPInfo if 31@...
  20. Parazitas

    [CLEO] Some snippets

    NOPs Disable Dialog appearing / showing 0.3.7 - R1 :BlockShowDialog { 0.3.7 - R1 0AB1: @BlockShowDialog 1 State TRUE } IF 0AA2:31@ = "samp.dll" THEN 31@ += 0xCBB0 IF 0@ == TRUE THEN 0A8C: write_memory 31@ size 1 value 0xC3 virtual_protect 1 ELSE 0A8C: write_memory 31@...
  21. Parazitas

    [CLEO] Some snippets

    NOPs Disable Chat rendering / showing 0.3.7 - R1 :HideSAMPChat { 0.3.7 - R1 0AB1: @HideSAMPChat 1 State TRUE } IF 0AA2:31@ = "samp.dll" THEN 31@ += 0x64230 IF 0@ == TRUE THEN 0A8C: write_memory 31@ size 1 value 0xC3 virtual_protect 1 ELSE 0A8C: write_memory 31@ size 1...
  22. Parazitas

    [CLEO] Some snippets

    Opcode: 0B75: samp get_chat_string 1@ text_to 2@ prefix_to 3@ color_to 4@ prefix_color_to 5@ Without SAMPFUNCS 0.3.7 - R1 :getChatString { 0AC8: 0@ = allocate_memory_size 260 0AC8: 1@ = allocate_memory_size 260 0AB1: @getChatString 1 ChatID 99 _Returned: Text 0@ PrefixText 1@ Color...
  23. Parazitas

    [CLEO] Some snippets

    will be updated...
  24. Parazitas

    [CLEO] Some snippets

    OPCODE: 0B5B: samp get_listbox_item 1@ text_to 2@ Without SAMPFUNCS, added two more columns returns, see below.. 0.3.7 - R1 :GetCurrentDialogListboxItemText { 0.3.7 - R1 0AB1: @GetCurrentDialogListboxItemText 1 ListItem 9 _Returned: FirstColumnText 6@ SecondColumnText 7@...
  25. Parazitas

    [CLEO] Some snippets

    OPCODE: 0B54: samp 1@ = listbox_items_count Without SAMPFUNCS 0.3.7 - R1 :GetCurrentDialogListboxItemsCount { 0.3.7 - R1 0AB1: @GetCurrentDialogListboxItemsCount 0 _Returned: ListboxItemsCount 0@ } IF 0AA2: 31@ = "samp.dll" THEN 0A8E: 30@ = 31@ + 0x21A0B8 // DIALOG_POINTER_OFFSET...
  26. Parazitas

    CLEO Help Need help to get if actor damaged by player, 051A not working

    One example :DeathInfo // 0AB1: @DeathInfo 0 0A8D: 29@ = read_memory 0xB74490 size 4 virtual_protect 0 29@ += 0x4 0A8D: 29@ = read_memory 29@ size 4 virtual_protect 0 for 30@ = 0 to 35584 step 0x100 0A8D: 31@ = read_memory 29@ size 1 virtual_protect 0 000A: 29@ += 0x1 if and...
  27. Parazitas

    CLEO Help Variable text equals a preset

    This snippet taked from me a lot time xD etc... {$CLEO .cs} 0000: repeat wait 0 until 0AFA: while true wait 0 if 0B61: samp is_local_player_spawned then if 0B4C: samp is_dialog_active -1 then 0AB1: @isDialogResponded 0 _Returned: ID 0@ Type 1@ ListboxItem 2@ Button 3@...
  28. Parazitas

    [SNIPPET] Get / Set current dialog list item

    OPCODES: 0B48: samp 1@ = get_current_dialog_list_item 0B49: samp set_current_dialog_list_item 1@ Without SAMPFUNCS Snippets.: 0.3.7 - R1 :Get_current_dialog_list_item { 0.3.7 - R1 0AB1: @Get_current_dialog_list_item 0 0@ } 0AA2: 1@ = "samp.dll" 1@ += 0x21A0B8 0A8D: 1@ = readMem 1@ sz...
  29. Parazitas

    CLEO Help I need help

    If you wanna get help..., first learn explain properly...
  30. Parazitas

    CLEO Help Variable text equals a preset

    @habinabi BTW one question. You use SAMPFUNCS or not because there's big differences between codes?..
  31. Parazitas

    CLEO Help Variable text equals a preset

    Omg you saved my snippet xD Do you have some others which is lost since ugbase burned?
  32. Parazitas

    CLEO Help Look Cleo Code

    Learn about coding language, bye.
  33. Parazitas

    CLEO Help Force Deploy Parachute

    1. Idk, i just found pointers while i played with CE, i was curious how SF developers made opcodes. But it seems like whey use c++ keys or something like that. 2. I planned use it to make vehicle recorder without SF, but i never understand how that damn angles worked to press keys xD
  34. Parazitas

    CLEO Help Force Deploy Parachute

    https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes Some key offsets can be different from this link, so you can use CE to get them (read below). LCTRL and others. Not sure about game key snippet , but with virtually key snippet it worked very well...
  35. Parazitas

    CLEO Help Force Deploy Parachute

    This also makes same? :Set_Game_Key // 0AB1: @Set_Game_key 2 KeyOffSet 0x57 State 255 2@ = 0xB731A8 0@ *= 2 005A: 2@ += 0@ // (int) 0A8C: write_memory 2@ size 1 value 1@ virtual_protect 0 0AB2: ret 0 :Set_Virtual_Key { 255 = true 0 = false 0AB1: @Set_Virtual_Key 2 KeyOffSet 0x57...
  36. Parazitas

    CLEO Help Force Deploy Parachute

    Use anti pause
  37. Parazitas

    TRIGGER FOR ADMINS XD

    Make sure about word " everyone " before writing it.
  38. Parazitas

    CLEO Help help with the command

    You can use $NOT_USED instead of -1
  39. Parazitas

    CLEO Help Fake Sync

    R1?
  40. Parazitas

    CLEO Help Help with /sms id command add deelay

    Damn long code just for couple writes xD
  41. Parazitas

    Shoutbox

    I don't think so, i know how make my job easier for me. So I'm never tired after job, i always full of energy xD
  42. Parazitas

    Shoutbox

    You are hacker !! OMG !!
  43. Parazitas

    CLEO Help Help with /sms id command add deelay

    1. Read chat text 2. Return text after word " Phone " 3. Remove colors from text 4. Get digits. Most simplest code ever... Remove colors: http://ugbase.eu/index.php?threads/change-string.21320/ Get digits: http://ugbase.eu/index.php?threads/snippet-get-digits-from-text.19751/
  44. Parazitas

    CLEO Help Fix wheel

    No, I'm not there. I not making any mod, i using only my phone to visit here.
  45. Parazitas

    CLEO Help vehicle speed

    Well it worked on my server when i played samp one year before. Now i just coming visit with my phone to see what going on here xD
  46. Parazitas

    CLEO Help vehicle speed

    Based on some testing .., difference between cleo speed and server are: 4 x cleo speed = server speedometer value But it could be less than 4 depends on server {$CLEO .cs} 0000: wait 5000 while true wait 0 if Actor.Driving($PLAYER_ACTOR) then 0@ = Actor.CurrentCar($PLAYER_ACTOR) 02E3: 5@ =...
  47. Parazitas

    CLEO Help NRG boost

    Use search instead of making threads. http://ugbase.eu/index.php?threads/bike-motorcycle-speed-up.20376/
  48. Parazitas

    Need help with Chat++

    What it does?
  49. Parazitas

    CLEO Help How to make cleo script on player nickname;\

    http://ugbase.eu/index.php?threads/some-snippets.20983/page-3#post-128984
  50. Parazitas

    CLEO Help How to make cleo script on player nickname;\

    1. Get user name 2. Compare user name and name which you use to compare. 3. If compare is true then let code work otherwise block it.
  51. Parazitas

    Parazitas#0398

    Parazitas#0398
  52. Parazitas

    CLEO Help 0BC9 w/o SAMPFUNCS

    ~ This opcode does 4 types of functions ~ 1. Checks dialog id. 2. Send close button which was entered. 3. Selecting dialog list item which was entered. 4. Writing text to dialog editbox if any was entered. All this functions you find in this forum by using button " search ". All functions can...
  53. Parazitas

    CLEO Help game text

    http://ugbase.eu/index.php?threads/some-snippets.20983/page-3#post-129104
  54. Parazitas

    CLEO Help Help me /settime /setweather

    1. Just because you don't understand how to make it work doesn't mean it can't work. 2. Server can have good anti cheat
  55. Parazitas

    CLEO Help need help please ty

    Being rude and making same post's doesn't make you better. So be patient and wait instead of making same type threads...
  56. Parazitas

    CLEO Help Help me /settime /setweather

    Just change chat input box pointer..: This one 0.3.DL 0x2ACA14 To this one 0.3.7 - R4 0x26E9FC 0.3.DL example {$CLEO .cs} 0000: NOP wait 8500 00BF: 7@ = current_time_hours, 6@ = current_time_minutes while true wait 0 if 0256: player $PLAYER_CHAR defined then 0AB1...
  57. Parazitas

    CLEO Help Commands

    Example to make your own command {$CLEO .cs} 0000: NOP wait 8500 00BF: 7@ = current_time_hours, 6@ = current_time_minutes while true wait 0 if 0256: player $PLAYER_CHAR defined then 0AB1: @GetLastSentTextFromChatBox 0 _Return: Command 0@ Text 1@ if 0AD4: $NOT_USED = scan_string...
  58. Parazitas

    Outdated information

    Outdated information
  59. Parazitas

    CLEO Help hello

    He asking server ip smart head..
  60. Parazitas

    Project Fuego By Siauliu'Kent

    Folder*
  61. Parazitas

    [ COLLECTION OF 0.3.7 - 0.*.* OFFSETS ]

    R4 SAMP_ST_INFO_OFFSET 0x26EA0C SAMP_ST_POOLS_OFFSET 0x3DE SAMP_ST_PLAYER_POOLS_OFFSET 0x8 SAMP_ST_TEXTDRAW_POOLS_OFFSET 0x20
  62. Parazitas

    CLEO Help who can teach me how to decrypt any cleo?

    What?? How you know @Parazitas ?? Can i talk with him somehow? I heard he stopped do cleo things and started live his own life without poor cleo language.
  63. Parazitas

    CLEO Help Disable sparks

    0A8C: write_memory 0x723C10 size 2 value 0xC390 virtual_protect 0
  64. Parazitas

    CLEO Help Disable sparks

    You probably was rly bored xD
  65. Parazitas

    CLEO Help TEWDRAW

    1. I don't understand this your language. 2. You breaking forum rules. http://ugbase.eu/index.php?threads/general-ugbase-eu-rules.14418/ 3. I don't have time to help someone...
  66. Parazitas

    CLEO Help TEWDRAW

    I can see..., not you made code, because you can't understand opcodes..
  67. Parazitas

    CLEO Help TEWDRAW

    Just get textdraw model..., If model is rock then click it...
  68. Parazitas

    CLEO Help TEWDRAW

    Share code
  69. Parazitas

    Shoutbox

    Ahhh, ok maybe once a week xD
  70. Parazitas

    Shoutbox

    Damn this forum become little annoying, now here i can see only requests , some good snippets and people's. Nothing good going anymore here, sad how time change this forum.
  71. Parazitas

    CLEO Help Need help with cleo file

    First of all, this is not your code. Second, you can't understand anything what was written here... And third, if you can't understand anything that mean you just waiting to get full ready code or just completely compiled cleo for your damn server for personal use... So the results is...
  72. Parazitas

    CLEO Help dialog select

    Sometimes opcode returns distance if you get dialog more times xD But just sometimes, Good luck.
  73. Parazitas

    CLEO Help dialog select

    Simple code xD
  74. Parazitas

    CLEO Help dialog select

    So you made something wrong..
  75. Parazitas

    CLEO Help dialog select

    Wrong call structure... 0AB1: @get_list_item 1 "Trucker" return_to 1@ Correction Alloc 30@ 260 Format 30@ "Trucker" 0AB1: @get_list_item 1 30@ return_to 1@
  76. Parazitas

    CLEO Help Help, auto press key didn't work when the dialog is opened.

    I'm to busy... Do it yourself. Here's old video.:
  77. Parazitas

    Shoutbox

    working 7 days a week, not to bad xD
  78. Parazitas

    CLEO Help Help, auto press key didn't work when the dialog is opened.

    ... :Set_current_dialog_list_item { 0.3.DL 0AB1: @Set_current_dialog_list_item 1 ItemNumber 1 } 0AA2: 1@ = "samp.dll" 1@ += 0x2AC9E0 0A8D: 1@ = readMem 1@ sz 1 vp 0 1@ += 20 0A8D: 1@ = readMem 1@ sz 1 vp 0 1@ += 143 0A8C: write_memory 1@ size 1 value 0@ virtual_protect 0 0AB2: 0
  79. Parazitas

    CLEO Help Help, auto press key didn't work when the dialog is opened.

    So you telling me that is to hard for you replace this pointer 0x26E898 to this 0x2AC9E0
  80. Parazitas

    CLEO Help Help, auto press key didn't work when the dialog is opened.

    :CLOSE_DIALOG { 0.3.DL 0AB1: @CLOSE_DIALOG 1 Button 0 // 0 = Left , 1 = Right } IF 0AA2: 10@ = "samp.dll" THEN 0A8E: 11@ = 10@ + 0x2AC9E0 // SAMP_DIALOG_INFO_OFFSET 0A8D: 12@ = readMem 11@ sz 4 vp 0 0A8E: 11@ = 10@ + 0x700D0 //SAMP_DIALOG_CLOSE 0AA8...
  81. Parazitas

    CLEO Help Help, auto press key didn't work when the dialog is opened.

    1. You never said you doing it for DL, so this is your problem. 2. Just change pointer to dl and it works.
  82. Parazitas

    CLEO Help Help, auto press key didn't work when the dialog is opened.

    Someone else maybe can, I'm to busy :CloseCurrentDialogWithButton { 0.3.7 - R1 0AB1: @CloseCurrentDialogWithButton 1 Button 0 // 1 = Left , 0 = Right } IF 0AA2: 10@ = "samp.dll" THEN 0A8E: 11@ = 10@ + 0x21A0B8 // SAMP_DIALOG_INFO_OFFSET 0A8D: 12@ = readMem 11@ sz 4 vp 0...
  83. Parazitas

    CLEO Help Help, auto press key didn't work when the dialog is opened.

    http://ugbase.eu/index.php?threads/some-snippets.20983/
  84. Parazitas

    Shoutbox

    Roman secret name xD
  85. Parazitas

    CLEO Help Quit/Exit GTA SA

    Also works, when you send random shit to samp.dll, server says: time outed / crashed. Only for samp. :SendCrash //0AB1: @SendCrash 0 IF 0AA2: 1@ = "samp.dll" THEN 1@ += 0x7646765 // random offset 0AA5: call 1@ num_param 1 pop 0 0@ END 0AB2: 0
  86. Parazitas

    CLEO Help I Need Your Helps. Please Help Me.

    Working a lot, haven't time anymore work with cleo, 2 months already when i not use pc...
  87. Parazitas

    CLEO Help Instant Crosshair HUD Bug

    This also can be useful. http://ugbase.eu/index.php?threads/some-snippets.20983/page-2#post-127953
  88. Parazitas

    CLEO Help Help me

    @ajom maybe you wanna help him compiling this code. Like i said i don't have time run pc.
  89. Parazitas

    CLEO Help Help me

    1. /settime 4 - make your time 4 morning 2. /settime - this is for returning time back to normal, you just need enter command without time... 3. /setweather 10 - sets weather to SUNNY_VEGAS , depends which id you choose, more about id's check bellow...
  90. Parazitas

    CLEO Help Instant Crosshair HUD Bug

    Can you post pic of your results, i don't have time to run my pc because i working a lot, i have two hours after job make ready for other day. So if you could post pic maybe i can solve it without running pc.
  91. Parazitas

    CLEO Help Instant Crosshair HUD Bug

    Show crosshair instantly, normally you need wait one sec until you see crosshair when aiming , this code make it show instantly! 0@ readMem 5824985 sz 1 // Read only one time to get default value // Write to set show crosshair instantly writeMem 5824985 sz 1 vl 235 vp 1 // Write to set...
  92. Parazitas

    CLEO Help Detect Another Player Vehicle Speed.

    For chat command. Just change chatbox pointer. http://ugbase.eu/index.php?threads/req-mod-to-shorten-a-server-command.21937/#post-128444
  93. Parazitas

    CLEO Help Detect Another Player Vehicle Speed.

    That's not to hard. Possible.
  94. Parazitas

    CLEO Help Detect Another Player Vehicle Speed.

    Any player?, be more specific...
  95. Parazitas

    SELLING PUBG MOBILE HACKS

    Wrong section..
  96. Parazitas

    CLEO Help find object

    To busy, always working.
  97. Parazitas

    Untagged Release No Spread with an expanding crosshair

    Just because on your server this was fixed doesn't mean that won't work on others..
Top