Re: Reading a Process Memory
I've had a look for any info on this with little success. Any thoughts would be appreciated.
Thanks.
Re: Reading a Process Memory
Why do you want to do this?
Re: Reading a Process Memory
I am attempting to write a trainer for a game. Basically change the process memory to have more "money" at the start of the game. I have found the memory location but it seems to change everytime a new game is started so I thought i could iterate through memory looking for the associated string and, once found, change the value.
This takes some time and I'm looking to reduce the area of memory I am searching if possible.
Re: Reading a Process Memory
There's no need to do a "massive iteration", the reason the value changes is because its using a pointer to point to it, once you figure out the pointer its easy to write into the memory, you might want to check out this site, there's an entire tutorials section.