unknowncheats uc-forum.com ucdownloads ucdownloads.com

Go Back   UC-Tutorials - Multiplayer Game Hacking and Cheat Tutorials > First-Person Shooters > Call Of Duty Series > Call Of Duty

- Sponsored Advertisement -
http://www.myfpscheats.com/


Reply
 
Thread Tools Display Modes
  #1  
Old 02-08-2009, 02:42 AM
Alkatraz Alkatraz is offline
Administrator
 
Join Date: Jan 2007
Posts: 72
Default [Information] COD 1byte Wallhack

Following an awesome tutorial made by crx from another forum I tracked down the wallhack byte. Which is.
Code:
300296B6  |. 0D 80000000    OR EAX,80
Which needs to be changed to
Code:
300296B6  |. 0D 88000000    OR EAX,88
The second byte only needs changing so it would be 300296B7

The cgame_mp base (0x30000000) never changes so you can just use 300296B7 instead of Base + 000296B7

Putting that into a thread is easy.


PHP Code:
#include

///////GLOBALS/////////////////////
HANDLE hand GetCurrentProcess();
BOOL bWallhack;
BYTE WH[1] = {0x88};
BYTE WHOrig[1] = {0x80};
///////////////////////////////////

DWORD WINAPI WHThread(LPVOID)
{
    for(;; 
Sleep(500))
    {
        if(
GetAsyncKeyState(VK_NUMPAD1))
        {
            if(
bWallhack == FALSE)
            {
            
WriteProcessMemory(hand, (void*)(0x300296B7), &WH10);
            
bWallhack=TRUE;
            }
            else
            {
            
WriteProcessMemory(hand, (void*)(0x300296B7), &WHOrig10);
            
bWallhack=FALSE;
            }
        }
    }
    return 
0;
}

BOOL WINAPI DllMain (HINSTANCE hModuleDWORD dwReasonLPVOID lpvReserved)
{
      if (
dwReason == DLL_PROCESS_ATTACH)
      {
        
CreateThread(NULLNULLWHThreadNULLNULLNULL);
    }

    return -
1;

Reply With Quote
Reply

  • Submit Thread to Digg
  • Submit Thread to del.icio.us
  • Submit Thread to StumbleUpon
  • Submit Thread to Google
  • Submit Thread to Facebook
  • Submit Thread to My Yahoo!
  • Submit Thread to MySpace
  • Submit Thread to Twitter
  • Submit Thread to Reddit

Tags
1byte, cod, information, wallhack

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



All times are GMT. The time now is 10:35 AM.