this will be a quick overview of the mov instruction in ASM
ok well first we should understand that ASM is built of little commands that move numbers and offsets around to run the program
well mov
why i teach you?
because lets say
a address u found that gives ammo is
- Code:
-
mov eax,05
now this wold be lets say ur gun has 5 bullets in the clip
- Code:
-
mov eax,05
would mov the hex value of 05(which is 5)
to eax
also mov always takes the right value to the left value (usually a register of some type)
so editing it to
- Code:
-
mov eax, 09
would add 9 bullets(in theroy u might have to do more)
however i want to tell you that most games wont be this simple
so ull need to learn more commands but i will post quick tutorials on more of them