|
Since you know how to code c++ I expect that you also know about DMA, pointers and OOP.
Most games are oop, so you can guess that every Game Object has it's own class, and that the instances of those classes are allocated dynammicaly in your ram, and the game uses some sort of object manager to acces the objects, so you need to find out how the game accesses those objects to be able to find the data you need for your bot.
I'd suppose you to read some Cheat Engine and reverseengeneering Tuts.
And you should know If you want your bot to be operating inside the target game or outside, take a look at dll injection if you want to work inside the target's adress space.
|