Have you ever worked with pointers without the objective of hacking? If not i advice you to. Because if you don't know what a pointer is (The most important thing in Unamanged Code IMO), you are doing it wrong.
Well, I have worked with pointers before. My questions is how do I implement it into a hack? I mean a simple hack to not something too complex.
Maybe like recording over the score in a pinball or minesweeper game.
Originally Posted by aanthonyz
Well, I have worked with pointers before. My questions is how do I implement it into a hack? I mean a simple hack to not something too complex.
Maybe like recording over the score in a pinball or minesweeper game.
a pointer points to somewhere in the memory. If you manage to find what place in memory has the score (for example), you point to that place, and change its content (the score).
I know that, I mean what would the actual code be?
Originally Posted by aanthonyz
I know that, I mean what would the actual code be?
You'd be able to answer this yourself if you knew how pointers work.