Search results

  1. Parazitas

    Help Chat Verify Bot

    @dphome Got time?
  2. Parazitas

    [C++ 0.3.7] Pls help, get vehicle array for coordinates

    You should read them from vehicle pool or RPC
  3. Parazitas

    Help Hello i need Teleport to MARKER for SAMP

    https://ugbase.eu/threads/open-source-pmt-teleport-master.4500/ Maybe helps this small code
  4. Parazitas

    Help rpc_showdialog issue

    Little search couldn't hurt.. https://ugbase.eu/threads/need-help-getting-the-raknet-intercepted-dialog-info.12309/#post-94786
  5. Parazitas

    [C++] Atentat BOT / Kill players without shooting

    Random in range -10 to 10
  6. Parazitas

    [HELP] Need 0.3.DL Offsets

    Sure, but Only when i get free time for pc
  7. Parazitas

    [CLEO] Some snippets

    Method to check Attached object and get its Handle 0.3.7 R1 :isAttachedObjectExist { 0.3.7 - R1 MAX ATTACHED OBJECTS = 10 IF 0AB1: @isAttachedObjectExist 1 ID: 0@ } IF 0AA2: 31@ = "samp.dll" THEN 31@ += 0x21A0F8 // SAMP_INFO_OFFSET 0A8D: 31@ = readmem 31@ sz 4 vp 0 31@...
  8. Parazitas

    CLEO Help I want HTTP Cleo

    We can see your code so, no solutions..
  9. Parazitas

    CLEO Help I want HTTP Cleo

    First make it work without dialog... Then you can move on.
  10. Parazitas

    CLEO Help need help for adding activate key

    I will try get time to fulfill your wish.
  11. Parazitas

    Help Looking 4 sa-mp 0.3.dl-r1 auto drive to checkpoint and bypass code verification

    Good luck. As i stated in the comment
  12. Parazitas

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

    SAMP.DLL + OFFSET + PLAYER_ID * 4 = PLAYER COLOR R1: 0x216379 R2: 0x216381 R3: 0x151579 R4 - v1: 0x1516A1 R4 - v2 0x1516A1 R5 0x151829 DL 0x18F6C1
  13. Parazitas

    find wallhack

    Which samp version?
  14. Parazitas

    Help Show up player on Map

    Yes possible
  15. Parazitas

    Put AHK into CLEO

    Never used mouse with more than 2 buttons, don't know how to check when you pressed it
  16. Parazitas

    How to calculate atan2 in cleo script for gta sa android?

    C++ example #include <iostream> #include <cmath> double arctan(double x, int terms) { double result = 0.0; double sign = 1.0; for (int n = 1; n <= 2 * terms; n += 2) { double term = sign * (std::pow(x, n) / n); result += term; sign *= -1.0; }...
  17. Parazitas

    How to calculate atan2 in cleo script for gta sa android?

    Example: def arctan(x, terms): result = 0 sign = 1 for n in range(1, 2*terms, 2): term = sign * (x ** n) / n result += term sign *= -1 return result x = 0.5 # Value for which you want to calculate arctan terms = 10 # Number of terms in the series...
  18. Parazitas

    How to calculate atan2 in cleo script for gta sa android?

    Just make your own function of arctangent... Use Google to find out how it works and start making calculations...
  19. Parazitas

    How to calculate atan2 in cleo script for gta sa android?

    https://ugbase.eu/threads/atan2-y-x-snippet.11295/
  20. Parazitas

    Help Changing SA-MP name-tag colors

    It's actually simple to find memories, i will drop for all existing samp versions when i run my pc.
  21. Parazitas

    CLEO not working wallhack

    Which samp version you looking for??
  22. Parazitas

    Help Changing SA-MP name-tag colors

    Nice, Great work, Well done ! Btw, do you know something about drawing lines directly from samp memories without using D3D9 rendering? Regards, Parazitas.
  23. Parazitas

    [CLEO] Some multi-samp snippets

    :ANTI_CRASH { 0AB1: @ANTI_CRASH 0 } IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN 0A8E: 30@ = 31@ + 0x5CF2C // SAMP_ADD_CHAT_MESSAGE_FUNC_OFFSET 0A8C...
  24. Parazitas

    help me with this automatic

    This is the most restarted way to ask for request... Learn first how to write request properly!!! Now no one will waste their time for this... Good luck. Regards, Parazitas.
  25. Parazitas

    Help Changing SA-MP name-tag colors

    Samp.dll + 0x216378 + playerID * 4 = player colour
  26. Parazitas

    Help Changing SA-MP name-tag colors

    You looking for specific samp version or for all together?
  27. Parazitas

    [CLEO] Some multi-samp snippets

    :SetRegisteredCommandName /* 0AC8: 2@ = allocate_memory_size 144 0AD3: 2@ = format "bye" 0AB1: @SetRegisteredCommandName 2 CommandID 1 NewCommandName 2@ // replacing command '/q' to '/bye */ IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _returned: ID 17@ IF 17@...
  28. Parazitas

    [CLEO] Some multi-samp snippets

    :GetRegisteredCommandName /* 0AB1: @GetRegisteredCommandName 1 CommandID 1 _Returned: Command 1@ */ IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN 0A8E: 30@ = 31@ + 0x21A0E8...
  29. Parazitas

    [CLEO] Some multi-samp snippets

    :GetRegisteredCommandsCount /* 0AB1: @GetRegisteredCommandsCount 0 _Returned: CommandsCount 1@ */ IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN 0A8E: 30@ = 31@ + 0x21A0E8...
  30. Parazitas

    suggestion regarding lev_m0ds

    Resolved, have a great day. Regards, Parazitas.
  31. Parazitas

    suggestion regarding lev_m0ds

    Hi, He's to busy and here's mainly made policy which says.. Possiblity to edit own post was disabled within few mins after post release. This prevents from deleting entire post Once peoples get what they wanted. I already suggested a way how i could solve his proble. So far i see it as only...
  32. Parazitas

    suggestion regarding lev_m0ds

    Hello, Once you posted it, i will move to respective category. P.S. Old post can't be edited! Can be deleted old one when updated version was released within new thread. Regards, Parazitas.
  33. Parazitas

    CLEO RemotePlayerData offsets for 0.3.7 R4

    https://ugbase.eu/threads/collection-of-0-3-7-0-offsets.4024/page-4#post-105232
  34. Parazitas

    How do i make sannybuilder to look and function like others

    SHIFT + TAB MOVES TEXT BACK OR JUMPS BACK
  35. Parazitas

    How do i make sannybuilder to look and function like others

    Use TAB IT MOVES TEXT OR JUMPS FURTHER
  36. Parazitas

    Anti reset gun

    Which samp version?? For which exactly weapons you looking for?
  37. Parazitas

    Auto Repair and Flipper

    Hi all. This cleo mod auto repair and auto Flipp your car. Send auto  in server command to repair. You can change server command to repair car. Source: http://pastebin.com/AkmcGBWj #MOD EDIT: MISSING ATTACHMENT!
  38. Parazitas

    Auto Vehicle Repair with server command

    Hi all. This is Auto Vehicle Repair with server command. Active/Deactive - in server say command "/afix" I would like to say thanks for the helping in add active / deactive those members.: @supahdupahnubah @springfield @opcode And of course I want to say, good luck to use. For edit.: {$CLEO...
  39. Parazitas

    Infinity run and Auto UnFreeze

    Hello world. This is Infinity run and Auto UnFreeze cleo. Activated: Auto - Source - http://pastebin.com/UCBPZLz2
  40. Parazitas

    Notepad

    Hello everyone. Today i wanna present you my new cleo called NOTEPAD What it is ? It's cleo mode which let you write some notes , job information or whatever you need... Of course if you are lazy write everything letter by letter , you can just edit notepad.txt Like..: When you are on the...
  41. Parazitas

    No Spread with an expanding crosshair

    This is no spread with the crosshair expanding as if you were playing normal. Have fun! Author: Me Activation/Deactivation menu with key: F2 Get Mouse with key: T Requirements: NONE! Working with any samp version... ~~~~~~~~ OPEN SOURCE ~~~~~~~~
  42. Parazitas

    Bike / Motorcycle speed up

    MotorcycleSpeedUP - Press continuously UP ARROW when you start drive Motorcycle. BikeSpeedUP - Press continuously W KEY when you start drive Bike. MotorcycleAndBikeSpeedUP - Press continuously UP ARROW if you start drive Motorcycle also press continuously W KEY if you start drive Bike...
  43. Parazitas

    Auto Login

    Hi all. Here is auto login. This auto login you can use in five servers one time. Just edit Autologin.ini ----------------------------------------------------------- Explanation how get HostName / ServerName 1. Open samp.exe 2. Choose your server 3. Right-click on your server 4. Then you see "...
  44. Parazitas

    [PROJECT] No SAMPFUNCS

    This thread will be updated and i add more things in future... For now you can download and use: 1. Vehicle recorder 2. OnFoot recorder 3. Cleo Control ~~ Vehicle recorder ~~ Commands: 1. /vr rec route name - Start recording new vehicle route 2. /vr play route name - Start playing vehicle...
  45. Parazitas

    Auto KeyBind

    Hello world. This is  Auto KeyBind cleo. Activate / Deactivate: In server say /akb KeyBind sends text based on your down time. Now, every 3 minutes You can change the text for what you want. - Most helpful - Administrators / VIP`s  when they publish assistance, etc. in server. For Edit...
  46. Parazitas

    Untagged Release [PROJECT] No SAMPFUNCS

    ~~ Open source ~~ Updated to latest samp version. Working any samp version. Commands: 1. /csload [FileName.cs] - Load cleo file 2. /csunload [FileName.cs] - Unload cleo file 3. /csreset [FileName.cs] - Reset cleo file 4. /csdelete [FileName.cs] - Delete cleo file 5. /csrename [Name.cs] -...
  47. Parazitas

    CLEO Help Auto dialog select

    I'm Suprised! Good job!
  48. Parazitas

    [CLEO] Some snippets

    SAMP SET GAME STATE :SetGameState { 0.3.7 R1 0AB1: @SetGameState 1 GameState 9 GAMESTATE_WAIT_CONNECT = 9, GAMESTATE_CONNECTING = 15, GAMESTATE_AWAIT_JOIN = 13, GAMESTATE_CONNECTED = 14 } IF 0AA2: 31@ = "samp.dll" THEN 31@ += 0x21A0F8 // SAMP_INFO_OFFSET 0A8D...
  49. Parazitas

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

    SAMP GAME STATE R1 - SAMP_INFO_OFFSET + 0x3BD R2 - SAMP_INFO_OFFSET + 0x3B9 R3 - SAMP_INFO_OFFSET + 0x3CD R4 v1 and v2 - SAMP_INFO_OFFSET + 0x3CD R5 - SAMP_INFO_OFFSET + 0x3CD DL - SAMP_INFO_OFFSET + 0x3CD
  50. Parazitas

    gta-chronicles map release

    No video :(
  51. Parazitas

    CLEO Help Auto dialog select

    https://ugbase.eu/threads/some-multi-samp-snippets.17193/page-2#post-111375 https://ugbase.eu/threads/some-multi-samp-snippets.17193/
  52. Parazitas

    Not enough actual parameters. Expected 2 params.

    How we should know you left only small part of code ...
  53. Parazitas

    Not enough actual parameters. Expected 2 params.

    :clancmd SAMP.IsCommandTyped(30@) 0AC6: 0@ = label @dialog_clancmd offset 0B3B: samp show_dialog id 1000 caption "{ffffff}Clan CMD {ff3333}.v4 {ffffff}- {ff3333}V{ffffff}1.0" text 0@ button_1 "{ff3333}Select" button_2 "{ff0000}Exit" style 2 0B43: samp cmd_ret
  54. Parazitas

    [CLEO] Some multi-samp snippets

    :SET_CHAT_INPUT_ENABLED { 0AB1: @SET_CHAT_INPUT_ENABLED 1 Status 0 // 1 = Enable, 0 = Disable } IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN 0A8E: 30@ = 31@ + 0x21A0E8...
  55. Parazitas

    Types of Sign Check and Sources , etc...

    That is weird and I don't know why exactly memory keep increasing
  56. Parazitas

    CLEO auto move and press keyboard

    Are you using samp addon?
  57. Parazitas

    CLEO auto move and press keyboard

    Try on foot recorder maybe it will do the job.. https://ugbase.eu/threads/project-no-sampfuncs.13578/
  58. Parazitas

    CLEO auto move and press keyboard

    It's for job or what?? Which samp version?
  59. Parazitas

    CLEO SA:MP Cleo Webhook

    https://ugbase.eu/threads/discord-webhooks.12297/#post-94816
  60. Parazitas

    auto accept dicebet or adb

    Hello, Please provide pictures when writing information.. Regards, Parazitas.
  61. Parazitas

    Types of Sign Check and Sources , etc...

    Last posted code was updated up to current samp version including DL
  62. Parazitas

    Types of Sign Check and Sources , etc...

    Just delete these lines with memories: 0x74542B 0x53EA88 0x747FB6 0x74805A
  63. Parazitas

    Types of Sign Check and Sources , etc...

    R5 has r2 release?
  64. Parazitas

    [CLEO] Some multi-samp snippets

    :isDialogEditBoxActive /* Set TRUE if you wanna check when dialog editbox is active Set FALSE if you wanna check when dialog editbox is closed Usage: IF 0AB1: @isDialogEditBoxActive 1 CheckingState FALSE // State: TRUE = active ; FALSE = closed */ IF 0AA2: 31@ = "samp.dll" THEN...
  65. Parazitas

    [CLEO] Some multi-samp snippets

    This function was made from scratch in order to obtain dialog listbox text by list item and column ids. To understand more about List items and Columns ids please check attached picture. :GetCurrentDialogListboxItemText { 0AB1: @GetCurrentDialogListboxItemText 2 ListItem 5 Column 2...
  66. Parazitas

    Types of Sign Check and Sources , etc...

    If you using samp addon just for anti pause.., i can Tell you i have already included that in last posted code, so you don't need samp addon when you using code
  67. Parazitas

    CLEO Help Why this code is making my game crashes

    https://ugbase.eu/threads/types-of-sign-check-and-sources-etc.10745/page-6#post-111504
  68. Parazitas

    CLEO REQ SAMP WALL HACK AND SAMPFUNCS.

    Hello, It was created for latest R4. If you using earliest Version of R4 of course it won't work.. It doesn't require SAMPFUNC. Make sure you using R4 not some random Fake version of R4 but actually running R1... When samp is loaded you can see chat message which tells you which samp version...
  69. Parazitas

    CLEO REQ SAMP WALL HACK AND SAMPFUNCS.

    - activation ALT + F3
  70. Parazitas

    CLEO I need help Cleo Paycheck ( Code Number )

    Activation command: /apd {$CLEO .cs} 0000: "Parazitas" REPEAT IF 8256: player $PLAYER_CHAR defined THEN 0A93: end_custom_thread END WAIT 1500 UNTIL 0256: player $PLAYER_CHAR defined 0AC8: 31@ = allocate_memory_size 1024 // allocate memory to format command 0AD3: 31@ = string_format "apd"...
  71. Parazitas

    CLEO REQ SAMP WALL HACK AND SAMPFUNCS.

    Hello, Please use " search " next time.. https://ugbase.eu/threads/nametaghack-0-3-7-0-3-dl-cleo-exe-asi.7508/page-8#post-105942 Regards, Parazitas.
  72. Parazitas

    Types of Sign Check and Sources , etc...

    Updated up to highest current samp version. Working on all samp versions. Working while gta sa window is paused / minimized. Activation working with command: /asc {$CLEO .cs} 0000: "Parazitas" REPEAT IF 8256: player $PLAYER_CHAR defined THEN 0A93: end_custom_thread END WAIT 1500 UNTIL 0256...
  73. Parazitas

    CLEO Help Why this code is making my game crashes

    Hello, Alright, will do later. Regards, Lukas.
  74. Parazitas

    [CLEO] Some multi-samp snippets

    :GetCurrentDialogListboxItemsCount { 0AB1: @GetCurrentDialogListboxItemsCount 0 _Returned: ListboxItemsCount 0@ } IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN 0A8E: 30@ =...
  75. Parazitas

    [CLEO] Some multi-samp snippets

    :get_pickup_handle_by_id { 0AB1: @get_pickup_handle_by_id 1 PickupID 0@ _Returned: Handle 1@ } IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN 31@ += 0x21A0F8 //...
  76. Parazitas

    [CLEO] Some multi-samp snippets

    :getPickUpStructure { 0AB1: @getPickUpStructure 1 PickupID 0@ _Returned: Model 1@ Type 2@ XYZ 3@ 4@ 5@ } IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN 31@ += 0x21A0F8 //...
  77. Parazitas

    [CLEO] Some multi-samp snippets

    :GetPlayerPingByID { 0AB1: @GetPlayerPingByID 1 ID 0@ _Returned: Ping 1@ } IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN 0A8E: 30@ = 31@ + 0x21A0F8 // SAMP_INFO_OFFSET...
  78. Parazitas

    [CLEO] Some multi-samp snippets

    :GetChatInputEditBoxText { 0AB1: @GetChatInputEditBoxText 0 _Returned: Text 0@ } IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _Returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN 0A8E: 30@ = 31@ + 0x21A0E8 //...
  79. Parazitas

    [CLEO] Some multi-samp snippets

    :SetChatInputEditBoxText /* 0AC8: 0@ = allocate_memory_size 1024 0AD3: 0@ = format "text or /command" 0AB1: @SetChatInputEditBoxText 1 InputText 0@ */ IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _Returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 //...
  80. Parazitas

    [CLEO] Some multi-samp snippets

    :get_dialog_type { 0AB1: @get_dialog_type 0 _Returned: Type 0@ } IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _Returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN 0A8E: 30@ = 31@ + 0x21A0B8 // SAMP_DIALOG_INFO_OFFSET...
  81. Parazitas

    [CLEO] Some multi-samp snippets

    :get_dialog_id { 0AB1: @get_dialog_id 0 _Returned: ID 1@ } IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _Returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN 0A8E: 30@ = 31@ + 0x21A0B8 // SAMP_DIALOG_INFO_OFFSET...
  82. Parazitas

    [CLEO] Some multi-samp snippets

    :get_current_dialog_editbox_text { 0AB1: @get_current_dialog_editbox_text 0 _Returned: Text 0@ } IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN 0A8E: 30@ = 31@ + 0x21A0B8 //...
  83. Parazitas

    [CLEO] Some multi-samp snippets

    :process_current_dialog_list_item { 0AB1: @process_current_dialog_list_item 2 ListItem 1 Button 1 // 1 = Left , 0 = Right } IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _Returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN...
  84. Parazitas

    [CLEO] Some multi-samp snippets

    :process_dialog_input /* 0AC8: 0@ = allocate_memory_size 1024 0AD3: 0@ = format "text" 0AB1: @process_dialog_input 2 InputText 0@ Button 1 // 1 = Left , 0 = Right */ IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _Returned: ID 17@ IF 17@ > 0 THEN IF...
  85. Parazitas

    [CLEO] Some multi-samp snippets

    :get_dialog_text { 0AB1: @get_dialog_text 0 _Returned: Text 1@ } IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _Returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN 0A8E: 30@ = 31@ + 0x21A0B8 // SAMP_DIALOG_INFO_OFFSET...
  86. Parazitas

    [CLEO] Some multi-samp snippets

    :SetDialogInputEditBoxText /* 0AC8: 0@ = allocate_memory_size 1024 0AD3: 0@ = format "text" 0AB1: @SetDialogInputEditBoxText 1 InputText 0@ */ IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _Returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1...
  87. Parazitas

    Untagged Release Updated Sanny Builder 3 SDK (v2023.04.10)

    Hello, Approved. Good job. Regards, Parazitas.
  88. Parazitas

    [CLEO] Some multi-samp snippets

    :SAMPGetObjectHandleByID { 0AB1: @SAMPGetObjectHandleByID 1 ObjectID 1249 _Returned: Handle 0@ } IF 0AA2: 31@ = "samp.dll" THEN 0AB1: @get_samp_version_id 0 _returned: ID 17@ IF 17@ > 0 THEN IF 17@ == 1 // 0.3.7 R1 THEN 31@ += 0x21A0F8 //...
  89. Parazitas

    CLEO Help Help me find Accessory removal

    Hello, First of all this is terrible way to ask or request something... You didn't provide any information.. What version of samp you currently using and everything else... I don't think you deserver to get code made for you request.. First learn how to ask something properly...
  90. Parazitas

    CLEO Help CLEO Goto Coordinate x, y, z

    Hi, Still not providing right information... This never going to be completed until right detailed information will be provided.. No ones can read yours or something else brains through internet.. provide right information to get your request completed.. Regards, Parazitas.
  91. Parazitas

    CLEO Help Is there any Cleo that is easier to control the car, everyone?

    @ajom seems here need your experience.
  92. Parazitas

    [CLEO] Some multi-samp snippets

    Function will return only first Column text! If you need for other columns please visit link below: https://ugbase.eu/threads/some-snippets.16708/page-3#post-100650 :get_current_dialog_list_item_text { 0AB1: @get_current_dialog_list_item_text 1 Item 1 _Returned: Text 0@ } IF 0AA2: 2@ =...
  93. Parazitas

    Help 0.3DL CreateObject

    0.3.DL BOOL CObjectPool::Create(ID nId, int nModel, CVector position, CVector rotation, float fDrawDistance) { return ((BOOL(__thiscall*)(CObjectPool*, ID, int, CVector, CVector, float))GetAddress(0x127D0))(this, nId, nModel, position, rotation, fDrawDistance); } RPC - Create Object offset...
  94. Parazitas

    Help 0.3DL CreateObject

    Alright i will drop here after job
Top