Quote:
Originally Posted by xNoscopeD
eh, what is offsets? offsets is a byte, value, string, 2bytes, 4bytes etc.? I know that about this upgrading:) and how i can make a hack "static" cuz when i get a shop hack, and i close the game and load again, my old adress dont work:(
|
I'm not gonna jump into the explaination of offset, anyways to be short, an offset stands for the location of something stored in the memory.
Quote:
these are data types, like int, char, byte, long (int), whatever, if you're curious, google them about how much space they takes (how much bytes)
In your case, you most likely will be using the byte (1 byte) type. I suppose, that there's a bVisible variable, which is a boolean (which can have 2 different values: true = 1, false = 0).
So, be invisible in the game, search for 0, then be visible, search for 1, and repeat it until you don't get only 3 or 4 values. If that don't works, do it vice versa: be visible, search for 0, be invisible, search for 1 and repeat it.
Quote:
|
i close the game and load again, my old adress dont work
|
The memory addresses keeps changing all the time, if you don't know any programming language, you can't do much against that.
If you do, C++, or even C#, write some algorythm which scans the entire memory part of the game and finds the correct adresses.
Or, there's something called TMK (trainer maker tool), you could make hacks, trainers with 0 programming knowledge with that tool, google it.