WeMod Developer

I thought the ones in green were system addresses? So, addresses that make the game run… And no, the mentioned address was black/grey

Static addresses are ones that never change and live the entire life of the program. For instance in C++ a static variable would be something like static int a = 3. This would be the same for static methods. There are stored in the DATA/BSS section of an executable depending on if they have been initialized at compile time.

If I now see a gray address, is this not static? How do I make it static?

You cannot make an address static. You need to trace it back to a static address and use pointers to get back to where you need to be.

And how do I do this?

I highly recommend that you try out Cheat Engine Tutorials by Stephen Chapman at least all 17 parts before asking questions.

1 Like