Search results

  1. J

    2D Target Box ESP for SA:MP

    Hello, I think this will be an interesting release because most box ESPs for SA:MP are just 2D boxes. Here is a code for 2D target boxes: void renderPlayerBoxes() { traceLastFunc("renderPlayerBoxes()"); if ( gta_menu_active() ) return; if ( cheat_state->_generic.cheat_panic_enabled )...
  2. J

    Untagged Release A good aimbot + nametag hack (0.3.7) [DLL]

    This is for people who want a simple aimbot and nametag hack. It will not work with sobeit because it is a d3d9 proxy. I made this aimbot lock on to the player you look at instead of finding the nearest actor. Credits: nuckfuts, p3ti, Pabloko (for the nametag hack).
  3. J

    Untagged Release GPCI Unbanner [CLEO!!!]

    Just go to the ugbase cheating server samp.ugbase.eu:7777 The server will tell you what your GPCI hash is after spawning. If the hash is different every time you spawn, you know it's working.
  4. J

    Cant install any MVSC :/

    Try downloading and installing Microsoft Visual Studio 2015 Enterprise. https://www.microsoft.com/en-us/download/details.aspx?id=48143 I pm'd you a valid key to activate it.
  5. J

    Compiling blue eclipse

    In sparsehash\windows\config.h: spraseconfig.h: replace #define HASH_FUN_H <hash_map> with #define HASH_FUN_H <unordered_map> That should at least fix 1 error.
  6. J

    [C++] [SAMP 0.3.7] NOP SetEngineState

    I'm using my own version of sobeit.
  7. J

    [C++] [SAMP 0.3.7] NOP SetEngineState

    Here is a patch that was missing in sobeit 0.3.7. I use this patch with NOP PutPlayerInVehicle and NOP RemovePlayerFromVehicle (maybe NOP SetPlayerPos too) to unlock all vehicles. You can drive admin-only cars with it! :-) Works great on CrazyBob's Cops And Robbers. int...
  8. J

    Need help simulating keys using memory addresses

    pPad->NewState.ButtonCircle = 255; worked with this code void main() { while ( true ) { if ( GetAsyncKeyState( VK_F5 ) ) { //*(WORD*)(0xB73458 + 0x22) = 255; works too CPadSAInterface *pPad = reinterpret_cast< CPadSAInterface *>( CLASS_CPad ); if (pPad != nullptr) {...
  9. J

    Need help simulating keys using memory addresses

    Thank you.
  10. J

    Need help simulating keys using memory addresses

    Hi, I'm trying to simulate a left mouse click in SA:MP using memory addresses.  0xB73458 Controls block +0x22 = [WORD] Fire 0 = OFF 255 = ON Here is my code: *(WORD*)(0xB73458 + 0x22) = 255; I thought it must be write protected. unsigned long oldProtection; VirtualProtect((LPVOID)0xB7347A...
Top