[C++] Basic Game (Memory Editing)

On domingo, 12 de septiembre de 2010 1 comentarios

Basic C++ Game Tool (Memory Editing)


Some simple basic C++ game Tool (egg: memory editing)
We will start with one of the most simple codes:
Syntax « c » : [ Download ] [ Hide ] [ Expand ]
#include

int main() {
  HWND hWnd = FindWindow(0, "Calculator");
  if(hWnd == 0){
    MessageBox(0, "Error cannot find window.", "Error", MB_OK|MB_ICONERROR);
  } else {
    DWORD proccess_ID;
    GetWindowThreadProcessId(hWnd, &proccess_ID);
    HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, proccess_ID);
    if(!hProcess){
      MessageBox(0, "Could not open the process!", "Error!", MB_OK|MB_ICONERROR);
    } else {
      int newdata = 500;
      DWORD newdatasize = sizeof(newdata);
      if(WriteProcessMemory(hProcess, (LPVOID)0x57C2A4, &newdata, newdatasize, NULL)){
        MessageBox(NULL, "WriteProcessMemory worked.", "Success", MB_OK + MB_ICONINFORMATION);
      } else {
        MessageBox(NULL, "Error cannot WriteProcessMemory!", "Error", MB_OK + MB_ICONERROR);
      }
      CloseHandle(hProcess);
    }
  }
  return 0;
}

This will edit the following memory address: 0x57C2A4
In the calculator window,
Syntax « c » : [ Download ] [ Hide ] [ Expand ]
 HWND hWnd = FindWindow(0, "Calculator");
        if(hWnd == 0)
        {
                MessageBox(0, "Error cannot find window.", "Error", MB_OK|MB_ICONERROR);
        }

The lines above will search for a window (process) to edit.
In this case it is the calculator but if you want to edit the Cod4 Addresses it should be iw3mp!
The if statement checks if the window is opened and exists. If not you will get a message that it can not be found.

Scroll down till you see this line:

if(WriteProcessMemory(hProcess, (LPVOID)0x57C2A4, &newdata, newdatasize, NULL))

0x57C2A4 is our address, newdata is the value for our adressm and newdatasize is the bytes that the address is (Most 4)
So you could edit it to:

if(WriteProcessMemory(hProcess, (LPVOID)0x57C2A4, &567, 4, NULL))

Which will change the value to 567 with 4 bytes.

Memory Address freezing

So there is not a real code to freeze (egg FreezeAdress() it just don't exist>
But we can freeze it by using an infinite loop

So we take the code which edits the address value:
Syntax « c » : [ Download ] [ Hide ]
 if(WriteProcessMemory(hProcess, (LPVOID)0x57C2A4, &newdata, newdatasize, NULL))
{
// Here should be the message box that the change has worked, but you need to remove it when using a loop otherwise you will get a infinite msgbox xD
}


and put it in a infinite loop:
Syntax « c » : [ Download ] [ Hide ] [ Expand ]
 while(1);
{
        if(WriteProcessMemory(hProcess, (LPVOID)0x57C2A4, &newdata, newdatasize, NULL))
        {
                                                               
        }
}

The code above will freeze your code by using a simple loop.
Syntax « c » : [ Download ] [ Hide ]
 for (int i = 0; i >= 0; i++)
{
// here the code
}

Author: Tukjedude

1 comentarios:

Cybrax Cyberspace dijo...

https://www.mpgh.net/forum/showthread.php?t=145383

Vieze teringlijer beetje mijn code stelen en je eigen naam eronder zetten.

Publicar un comentario