Results 1 to 10 of 10
  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)

  3. #2
    undergroundhack's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    130
    Reputation
    10
    Thanks
    100
    My Mood
    Amazed
    if this helps or if you use it please press THANKS
    [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!

  4. #3
    breeze's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    96
    Reputation
    10
    Thanks
    9
    My Mood
    Breezy
    If anyone was wondering, it replaces functions from other dll's with the ones in the dll you created and injected

  5. #4
    Ariez's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Location
    Tennessee
    Posts
    2,371
    Reputation
    69
    Thanks
    135
    My Mood
    Buzzed
    How do u make a dll? and how do u make an injector?

  6. #5
    undergroundhack's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    130
    Reputation
    10
    Thanks
    100
    My Mood
    Amazed
    first you probably wanna learn to code before you waste your time on that 2nd get a tut.
    [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!

  7. #6
    bannedshow's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Location
    ..
    Posts
    1,248
    Reputation
    9
    Thanks
    110
    My Mood
    Blah
    Quote Originally Posted by undergroundhack View Post
    first you probably wanna learn to code before you waste your time on that 2nd get a tut.
    this injector will not just work for wallhack or chams, it will inject whatever dll you program it to do so.
    OH AND IF YOU REALLY CAN CODE WHAT IS PLAYER STRIDE AND WHAT HACK IS IT USED IN?(just a quick test)lol
    Last edited by bannedshow; 05-04-2009 at 05:21 PM.

  8. #7
    Sinvudyo's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    The Netherlands
    Posts
    9
    Reputation
    10
    Thanks
    1
    My Mood
    Yeehaw
    Where's a tut to create hacks?

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


    ya this is very usefull for a short code
    [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!

  10. #9
    undergroundhack's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    130
    Reputation
    10
    Thanks
    100
    My Mood
    Amazed
    ok im adding a comment so this is back up top i dont feel like reposting
    [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!

  11. #10
    undergroundhack's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    130
    Reputation
    10
    Thanks
    100
    My Mood
    Amazed
    after you compliedand run it will look exactly like this
    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;
    }
    [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!

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