Search results

  1. K

    CLEO Help RPC

    Yea I know but I'd like to hook so I can instantly hide the dialog and send a button press
  2. K

    CLEO Help RPC

    Any1 knows why not all packets trigger the hook? 0BE3: raknet setup_incoming_rpc_hook @hook hook: 0BE5: raknet 28@ = get_hook_param PARAM_PACKETID format 26@ "%d" 28@ 0AF8: samp add_message_to_chat 26@ I never see any RPC_ScrShowDialog ( 61 ) even after I join the server and register...
  3. K

    CLEO Help Find a certain pickup

    can be closed. assembled the thing and it works
  4. K

    CLEO Help Find a certain pickup

    server renders 6 pickups per map I believe, so having multiple in render shouldn't really be important. But just in case, I wrote this, I'm gonna test it out in a sec 0BB9: samp 1@ = get_pickup_pool_ptr 0A8D: 2@ = read_memory 1@ size 4 virtual_protect 0 // PickupsCount if 2@ > 0 then 0A8E: 2@ =...
  5. K

    CLEO Help Find a certain pickup

    not all pickup models are the same http://weedarr.wikidot.com/pickups
  6. K

    CLEO Help Find a certain pickup

    http://ugbase.eu/index.php?threads/release-pickup-finder.12473/ I found this but if someone could explain to me how exactly functions work in cleo? :getPickupIdByModel 0BB9: samp 1@ = get_pickup_pool_ptr 0A8D: 2@ = read_memory 1@ size 4 virtual_protect 0 // PickupsCount if 2@ > 0 then...
  7. K

    CLEO Help Find a certain pickup

    Any ideas how would I get model id of a pickup?
  8. K

    in-game Sync Namestealer/Namechanger

    nope......
  9. K

    Cops And Robbers 2.6.4 [CODE5GAMING] [PHOENIX 5]

    this is the CODE5 cnr script, the script was sold to new owners 'phoenix 5' gaming and has recieved few minor updates https://lscnr-samp.com
  10. K

    CLEO Help Command to dialog..

    so like a menu where u can toggle on / off stuff in a cheat for example ?
  11. K

    Anti spec

    this will get you banned you know ?
  12. K

    APP Release python gta mini hack

    also this won't work with every version, I believe offsets r different on r1 r2 r3 dl, i may be wrong
  13. K

    APP Release python gta mini hack

    scroll through the code and look for WriteMem / WriteByte ReadMem / ReadByte dont suggest externals tho, internals are simpler and easier to code (.dll to inject <-- internal, mem reading / mem writing with openhandle <---- external)
  14. K

    C# Basic Memory Hacking in SAMP

    public byte[] ReadMemory(IntPtr memoryAddress, uint bytesToRead) { byte[] buffer = new byte[bytesToRead]; ProccessManagerApi.ReadProcessMemory(handle, memoryAddress, buffer, bytesToRead, out IntPtr pBytesRead); return buffer; } public...
  15. K

    C# Basic Memory Hacking in SAMP

    public IntPtr GetModuleAddress(string moduleName) { for (int i = 0; i < process.Modules.Count; i++) if (process.Modules.ModuleName == moduleName) return process.Modules.BaseAddress; return IntPtr.Zero; }
  16. K

    C# Basic Memory Hacking in SAMP

    WriteMemory(samp.dll + offset, byte[] buffer) I coded something for samp in C# reply if u need help
  17. K

    How would I call a function inside the game?

    I know that Int32 sampSayAddress = "samp.dll" + 0x57f0 How do I call this with my message?
  18. K

    CLEO Help Help

    server ip?
  19. K

    [Tutorial] Read / write memory

    helpful thx
  20. K

    [CLOSED] Accepting request

    u just needed to google a bit @agralek ..
  21. K

    Help

    google tire aimbot samp lol
  22. K

    CLEO Help gm

    sampfuncs 5.3.3 download the SDK and slap it into ur data/sa in sanny builder
  23. K

    CLEO Help Question about pointers and offsets

    so I have a pointer and an offset, how do I get an actual address ?
  24. K

    CLEO Help [SOLVED] weird behavior

    PS FOR ANYONE VIEWING THIS IN FUTURE DON'T USE 33@ 32@ 31@ thx for parazitas for pointing this out in discord pms
  25. K

    CLEO Help [SOLVED] weird behavior

    ok thanks
  26. K

    CLEO Help [SOLVED] weird behavior

    Where does it go then ?
  27. K

    CLEO Help [SOLVED] weird behavior

    0B34: samp register_client_command "autonews" to_label @toggle 33@ = true :toggle if 33@ == false then 33@ = true 0AF8: samp add_message_to_chat "[/news] Toggled on!" color 0xFFFFFF else 33@ = false 0AF8: samp add_message_to_chat "[Auto /news]Toggled off!" color 0xFFFFFF end...
  28. K

    CLEO Help Simple question

    Executing cleo files while the game is running cs fileName.cs Executing opcodes mid game < just paste the opcode > fpscounter https://blast.hk/wiki/sampfuncs:console
  29. K

    CLEO Help [SOLVED] cutting floats

    removed opcodes and works fine thx
  30. K

    CLEO Help [SOLVED] cutting floats

    crashes on 100.0 too and on 100
  31. K

    CLEO Help [SOLVED] cutting floats

    idk if im doing anything wrong but game crashes when i do 006B: 30@ *= 100.00
  32. K

    CLEO Help [SOLVED] arrays

    thanks monday
  33. K

    CLEO Help [SOLVED] cutting floats

    for example i have a 6.214698385312 52.3532355533 how do I cut it to 6.21 52.35 aka 6.2100000000 52.350000000 (i need them to still be float and not an string)
  34. K

    CLEO Help [SOLVED] arrays

    how would I do string arrays like this for example: 1@ = {"hello". "bla bla", "rekt", "get fucked", "nignog" } 1@[2] = "rekt" is this even possible?
  35. K

    CLEO Help 0B37: samp 3@ = get_player_color 2@

    ok i think i found out why the game crashes lmao 0AF8: samp add_message_to_chat crashes it gonna remove it and try again
  36. K

    CLEO Help 0B37: samp 3@ = get_player_color 2@

    0509: 7@ = distance_between_XY 1@ 2@ and_XY 4@ 5@ always returns absurdly large number (example : 315890531985) if 7@ <= 0.8 bugs the game? (gets me tped to loading screen view (the marina part ) )
  37. K

    CLEO Help 0B37: samp 3@ = get_player_color 2@

    thx will test 2day
  38. K

    CLEO Help 0B37: samp 3@ = get_player_color 2@

    {$CLEO .cs} 0000: NOP var 3@ : integer end :MAIN wait 0 if and 056D: actor $PLAYER_ACTOR defined key_down 45 jf @MAIN 0AB5: store_actor $PLAYER_ACTOR closest_vehicle_to 0@ closest_ped_to 1@ if 056D: actor 1@ defined jf @WOW 2@ = SAMP.GetSAMPPlayerIDByActorHandle(1@) 0B37: samp 3@ =...
  39. K

    CLEO Help 0B37: samp 3@ = get_player_color 2@

    0B37: samp 3@ = get_player_color 2@ Never returns correct value?
  40. K

    CLEO Release CashMe.cs (Undetectable Money Hack)

    cash is always serversided all of u who downloaded this r retards
  41. K

    CLEO Help Substring

    sorry fren my question is how to cut a string from position X to length Y
  42. K

    [SNIPPET] Copy a String

    thanks useful
  43. K

    CLEO Help Substring

    string f I I V bla bla bla: 8981249812498 is big gay f.substring(13, 13) = 8981249812498 how would I do this ?
Top