Search results

  1. E

    SA:MP bot

    Use wine.
  2. E

    How to start in C++?

    For GTA cheats and shit you only need desktop development.
  3. E

    CLEO Help change player color

    emulate RPC_ScrSetPlayerColor receive.
  4. E

    Any bypass for this new AC?

    strings2 -a I_DONT_KNOW_HOW_THIS_MOD_IS_CALLED.sf and half of ur ac internal workings are exposed lul
  5. E

    How to change hwid?

    windows  username afaik
  6. E

    [Question] How detect if player use tank mode?

    Yes, we know
  7. E

    [HALP] Finding NameTag Address

    You can start by looking for what reads the address for nametag draw distance and nop around. Or you could make use of https://wiki.sa-mp.com/wiki/DisableNameTagLOS, but have in ur mind that this function has to be called before player connection, so a relog is needed to take effect. (reconnect...
  8. E

    CLEO Help [HELP] SAMPFUNCS!! [HELP!!]

    SAMPFUNCS.asi is seen as virus (maybe it is ???) by windows defender so it gets removed unless you add it to exceptions.
  9. E

    [HALP] Finding NameTag Address

    Open up a 0.3e server. Use https://wiki.sa-mp.com/wiki/SetNameTagDrawDistance and set nametag draw distance to 50.0. Use cheatengine to search for 50.0 value. Use that function again to change from 50.0 to 100.0. Use cheatengine again and search for 100.0 Repeat until you find the address. (2...
  10. E

    samp dialog

    Hook RakNet Receive RPC, check if rpcid = RPC_ScrShowDialog, then save the parameters in variables for further use at /show command.
  11. E

    CLEO Help Get GPCI

    You were right. That serial sent at player connect isn't gpci, but it is still possible to spoof gpci check because the same serial will generate the same gpci no matter what player connected which is enough for me to trick an anti account theft system.
  12. E

    CLEO Help Get GPCI

    I'll give it a try tomorrow.
  13. E

    CLEO Help Get GPCI

    The title says it all. I want to get local player GPCI using a cleo script but I've got no idea how should I do that in the first place. // Well, I've got a tiny idea but maybe there is something easier than filtering all outgoing RPCs, wait for RPC_ClientJoin to be sent and extract gpci from...
  14. E

    Help A question about the s0beit Admin checker

    Generate all case variations of admin names and copy them to config file https://3v4l.org/v13mE
  15. E

    CLEO Help Is object attached to a ped/car/another object?

    Title is pretty self-explanatory.
  16. E

    APP Release RakSAMP [v0.8.6-0.3.7-ALLRC]

    Re: RakSAMP [v0.8.6-0.3.7] I made a pull request on github to add 0.3.7 R2 AUTH_IN keys (aka fix Unknown AUTH_IN) Here you have what you've got to edit in your source: https://github.com/P3ti/RakSAMP/pull/6/files
  17. E

    CLEO Help HTTP Get

    bump...
  18. E

    CLEO Help HTTP Get

    Is it possible to get plain text data from an URL? ( like HTTP SA-MP function ) If it is, could you show me an example?
  19. E

    Help RPC

    Yeah, I'm so dumb. I finally got it to work after I saw that scmevent params order in sobeit is not the same as in raksamp.
  20. E

    APP Release RakSAMP [v0.8.6-0.3.7-ALLRC]

    Re: RakSAMP [v0.8.6-0.3z] sampDialog.wDialogID = cur. dialog id
  21. E

    Help RPC

    I think you didn't understand me. When a player enters/exits a tuning garage, OnEnterExitModShop callback is called on the server. I want to fake this call (actually, I want to spam). I do not think changing interior will trigger that callback.
  22. E

    Help RPC

    Hi. Can anyone share with me RPC code for OnEnterExitModShop? I was trying to send fake data to the server but I couldn't find this RPC in sobeit nor raksamp source.
  23. E

    APP Release RakSAMP [v0.8.6-0.3.7-ALLRC]

    Re: RakSAMP [v0.8.6-0.3z] Thanks for patch! It works like a charm.
  24. E

    APP Release RakSAMP [v0.8.6-0.3.7-ALLRC]

    Re: RakSAMP [v0.8.6-0.3z] Any ideas why can't I create an account on red.bugged.ro:7777 using raksamp? After registering the account and answering to the basic questions, it doesn't proceed to the tutorial, it just freezes. I tried a forced !spawn or !class, but nothing happens.
  25. E

    APP Release RakSAMP [v0.8.6-0.3.7-ALLRC]

    Re: RakSAMP [v0.8.6-0.3z] //Nevermind. I didn't know you posted source code. Good job !
  26. E

    Decompile / Decrypt

    I think it is not the case. I do not want to view entire source code. I want to edit the part where data is sent ( like altering a character of the address where data is being sent - this would make the entire keylogger useless ).
  27. E

    Decompile / Decrypt

    Hi! How can I view a hex crypted CLEO source code? I think it has a keylogger inbuilt... I tried to open .cs file with Sanny Builder but I've got this error: 'Unknown opcode 79CA at offset 15.' Ok, I enabled that option to ignore unknown offsets. Now I get something like this: hex SOME HEX...
  28. E

    CLEO Help Dialog response

    Hello! How can I send a response to a msgbox type dialog? I want to autopress left button ( id 1 ). Thanks! //Nevermind. I double-checked sfdoc and I found 0B47. //Thanks anyway springfield
  29. E

    CLEO Help request_animation crash

    Boom! It crashes. Tried ' 04ED: load_animation "PED" ' in SF console.
  30. E

    CLEO Help request_animation crash

    I'm not new to programming. I already know something about cleo. The only thing that I doesn't know NOW is WHY that opcode ( request_animation ) crashes my game ( only MP ). I tried to 'request animation' on a key press, but it is still crashing ( crashes when I press that key )
  31. E

    CLEO Help request_animation crash

    Thank you! I'm new in this CLEO thing.
  32. E

    CLEO Help request_animation crash

    {$CLEO .cs} :Move_1 thread "MOVE" 3@ = false :first_things 04ED: request_animation "PED" :move_checkkey while true wait 0     if and         0AB0: is_key_pressed 8         0B21: NOT samp is_chat_opened     then         3@ = true         0002: jump @start_move         wait 1000     end      ...
  33. E

    CLEO Help request_animation crash

    Hi. I'm trying to make an auto walking script ( i'm doing this using animations ). When I put this in .cs file, SAMP crashes at startup ( after loading ): :first_things 04ED: request_animation "PED" I use it to preload the animation. P.S: GTA SA singleplayer isn't crashing.
  34. E

    CLEO Help Force press a key

    Thanks, I'll give it a try.
  35. E

    CLEO Help Force press a key

    Hi. I'd want to create a cleo that automatically presses LMB ( or LCTRL ) to attack. How can I do this? Thanks! EDIT: Ok, I've found this: set_game_key Question: Where can I find keys and states ids?
  36. E

    CLEO Release SAMPFUNCS v2.6 + v3.1

    Last version prints a message in chatbox at every dialog response ( 1 for true, 2 for false IIRC )
  37. E

    Custom *.dat loader - NOT S0BEIT

    I still need one ( or a clue how to make one )
  38. E

    Custom *.dat loader - NOT S0BEIT

    Hi. Can you give me a custom *.dat loader ( gta.dat ) for SAMP - it doesn't allow loading custom *.dat files. Thanks.
Top