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 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 efficent way to form a connection with 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 permission than you running a program with admistrator permission).
These kernel allow you to a better chance at bypassing the anticheat because 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 comes out.
And with these address you change the memory of the game. For example you want to change your health, you need to find the correct static pointer and find a path to the address containing your health,
and then 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 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 efficent way to form a connection with 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 permission than you running a program with admistrator permission).
These kernel allow you to a better chance at bypassing the anticheat because 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 comes out.
And with these address you change the memory of the game. For example you want to change your health, you need to find the correct static pointer and find a path to the address containing your health,
and then you change the value at the memory address to the value you want.

Here are some c++ cheating resources