Pointers
Ok, So i have been coming back to hacking after I veered off a little to learn some d3d and winsock. I hacked Spider Solitaire for practice and i made a c++ program to use the address I got that stored the score. The problem is that the address is dynamic so it is changed every time i start up Spider Solitaire. So i did a pointer search and i got the pointer, and it works and is the same everytime, but the problem is, I don't know what the address of the pointer is. All it says in my address box is:
P->xxxxxxxx
How do i know what the address of the pointer is?
address of pointer is the current address that's value is "P->xxxxxxxx" as you put it.