logo of the website

Welcome to the info page for C++ game cheating

This page contains basic information of game cheating with C++

How to start:

In Order to modify the game with C++ you need to first establish a connection to the game. This can be done, depending on the anticheat, via a handle or a kernel driver.
A handle is a pointer to the game. These handles however, depending on the anticheat, can be very easility blocked. The most efficient way to form a connection to the game is with a kernel driver.
A kernel driver is a program that runs at the highest possible permission in your Windows computer (it has even more permissions then you running a program in administrator mode).
These kernel drivers allow you to have a better chance at bypassing the anticheat since the anticheat is also a kernel driver.

How to modify:

How the game is modified is by finding the "static pointers". These are memory locations of the game where the address only changes when a new version of the game comes out.
With these addresses you change the memory of the game for better abilities.
For example, if you want to change your health, you need to find the correct static pointer. Then you find a path to the address containing your health and you change the value at the memory address to the value you want.

Here are some C++ cheating resources

How to start:

In Order to modify the game with C++ you need to first establish a connection to the game. This can be done, depending on the anticheat, via a handle or a kernel driver.
A handle is a pointer to the game. These handles however, depending on the anticheat, can be very easility blocked. The most efficient way to form a connection to the game is with a kernel driver.
A kernel driver is a program that runs at the highest possible permission in your Windows computer (it has even more permissions then you running a program in administrator mode).
These kernel drivers allow you to have a better chance at bypassing the anticheat since the anticheat is also a kernel driver.

How to modify:

How the game is modified is by finding the "static pointers". These are memory locations of the game where the address only changes when a new version of the game comes out.
With these addresses you change the memory of the game for better abilities.
For example, if you want to change your health, you need to find the correct static pointer. Then you find a path to the address containing your health and you change the value at the memory address to the value you want.

Here are some C++ cheating resources