I have been messing with cheat engine and I am trying to learn how to make cheats(for really basic and simple video games). So far I understand that there is static and dynamic memory and to get to the static you have to do all this weird pointer stuff. I am a little confused because I know there are things out there like aim bots that work on different computers. Are static memory addresses all the same regardless of computer? If not, can someone tell me how that works? ps. Can I change memory directly using Java?
Asked
Active
Viewed 364 times
0
-
2There are no guarantees that the address of static variables will persist upon different launches on same computer. – Teivaz May 04 '16 at 13:01
-
2And Java is not rhe best choiche for hacking with phisical memory – Marco May 04 '16 at 13:02
-
"Are static memory addresses all the same regardless of computer?" - Today, we use virtual memory which allows processes to have the same subjective memory layout on different machines and in different instances. – JimmyB May 04 '16 at 13:02
-
1"you have to do all this weird pointer stuff" - You may be heading in the wrong direction with your plans concerning the use of Java. – JimmyB May 04 '16 at 13:03
-
I was just wondering if java would work but I can use c++ too. – May 04 '16 at 13:09