Conversation Between AeroMan and sutil

7 Visitor Messages

  1. You'r welcome
    Glad i could help!
  2. Sir Alex thank you so much for all your tuts
    because of you i made my first working hack.
  3. No idea, but if you have a 64 bit system use a 64 bit injector.
  4. Ahm, Sir what are the new addies now?
  5. the addies are correct Sir ,
    i try this also,
    0xB0AD74
    0xB0AD10
    0xAFD70C
  6. It should work if the addies are correct.
  7. Sir i want to ask you about my struct.
    Because when i press mbutton nothing happens.
    Here it is:

    #include <stdio.h>
    #include <windows.h>

    #define ADR_PLAYERPOINTER 0x00B0AD74
    #define ADR_SERVERPOINTER 0x00B0AD10
    #define ADR_GlassWalls 0x00AFD70C

    DWORD *ingame= (DWORD*)ADR_PLAYERPOINTER;
    DWORD *outgame= (DWORD*)ADR_SERVERPOINTER;


    void Glasswalls()
    {


    if(GetKeyState(VK_MBUTTON))
    *(int*)ADR_GlassWalls = 1;
    else
    {
    *(int*)ADR_GlassWalls = 0;
    }
    }

    void HackThread()
    {
    for(;; )
    {
    if(*ingame)
    {
    Glasswalls();

    }
    if(*outgame)
    {
    }
    Sleep(200);
    }
    }
    BOOL WINAPI DllMain(HINSTANCE hMODULE, DWORD dwReason, LPVOID lpvReserved)
    {
    if(dwReason == DLL_PROCESS_ATTACH)
    {
    CreateThread(0, 0, (LPTHREAD_START_ROUTINE)HackThread , 0, 0, 0);
    MessageBoxA(NULL, "Sample","Sample",MB_OK);
    return TRUE;
    }
    }
Showing Visitor Messages 1 to 7 of 7