Results 1 to 10 of 10

Threaded View

  1. #1
    undergroundhack's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    130
    Reputation
    10
    Thanks
    100
    My Mood
    Amazed

    Thumbs up hook code for WALLHACK

    this code is intended to be placed in the dll code for hooking through a global windows hook.

    code:

    Code:
    // Hook structure.
    SDLLHook D3DHook =
    {
    "DDRAW.DLL",
    false, NULL, // Default hook disabled, NULL function pointer.
    {
    { "DirectDrawCreate", MyDirectDrawCreate },
    { NULL, NULL }
    }
    };
    
    BOOL APIENTRY DllMain( HINSTANCE hModule,
    DWORD fdwReason,
    LPVOID lpReserved )
    {
    // When initializing....
    if ( fdwReason == DLL_PROCESS_ATTACH )
    {
    hDLL = hModule;
    
    // We don't need thread notifications for what we're doing.
    // Thus, get rid of them, thereby eliminating some of the
    // overhead of this DLL
    DisableThreadLibraryCalls( hModule );
    
    // Only hook the APIs if this is the Everquest process.
    GetModuleFileName( GetModuleHandle( NULL ),
    Work,
    sizeof(Work) );
    PathStripPath( Work );
    
    if ( stricmp( Work, "myhooktarget.exe" ) == 0 )
    HookAPICalls( &D3DHook );
    }
    
    return TRUE;
    }

    Now all that remains is to get your DLL loaded into the target process.


    [IMG]https://i665.photobucke*****m/albums/vv17/undergroundhack/avatar_2961.gif[/IMG]
    goal list!
    get 10 kill streak on ca [X]
    get 100 kill streak on ca [X]
    get 30 post [X]
    get 80 post [X]
    get 100 post [X]
    get 400 post []
    make a small ca cham [X]
    get mpgh mod []

    respect list!
    dave84311
    [MPGH]obama

    press thanks!

  2. The Following 5 Users Say Thank You to undergroundhack For This Useful Post:

    boom24 (05-08-2009),crazykill13 (05-09-2009),gangraz (07-17-2009),mono1234 (12-14-2012),yura1 (06-07-2009)

Similar Threads

  1. Code for making wallhack
    By megaspeek in forum Combat Arms Hacks & Cheats
    Replies: 18
    Last Post: 06-03-2009, 09:22 AM
  2. Code for Wallhacking
    By lag in forum Combat Arms Hacks & Cheats
    Replies: 14
    Last Post: 08-01-2008, 10:17 AM
  3. Unlock code for mobile.
    By Dmx in forum General
    Replies: 4
    Last Post: 01-14-2007, 07:23 PM
  4. SERIAL CODE FOR PHOTOSHOP 9!!!!!!!! 100% working
    By -[standoff]- in forum Art & Graphic Design
    Replies: 10
    Last Post: 07-29-2006, 05:35 AM
  5. Replies: 37
    Last Post: 06-20-2006, 04:24 PM

Tags for this Thread