New|Life wrote:IMO the most crucial thing about hacking is the understanding of memory.
When dealing with memory, actually ASM knowledge is used more than C++, because C++ is not mainly used for game hacking.
In our case, the purpose of C++ is to code a bot/trainer, obviously to provide GUI for users, as well as implement all the hacks and botting functions inside them.
But then it is not a must to master ASM though, just know how to read the instructions will do.
So to answer you, I think learning both is compulsory, but C++ does have higher priority than ASM.
However you should not learn C++ if your main purpose is just to hack games.
There is something I need to say is that, learn C++ is crucial as it will help you understand how actually memory works. Do note that C++ is converted into assembly after compiling. And yes, learning C++ will give more information on how actually the assembly works.
example:
while in assembly it will be something like
Code: Select all
cmp ax,00
je xxxxxxxx//address of the (do something code)
I hope you understand that.