- Joined
- Apr 20, 2014
- Messages
- 24,081
- Reaction score
- 34,633
So this is for Age of Mythology,
Xor encryption is pretty simple here is some info ,
The instruction
the xor key is stored on eax , Simple way to bypass it
461C3C00 is 9999 float .
P.S , This is used to set a new value , If you wanna edit a current value to add or subtract then you have to decrypt the value itself then make the changes then encrypt it again .
Xor encryption is pretty simple here is some info ,
The instruction
Code:
xor eax,[edx+ecx*4]
the xor key is stored on eax , Simple way to bypass it
Code:
push esi
mov esi,461C3C00
xor esi,eax
mov [edx+ecx*4],esi
pop esi
461C3C00 is 9999 float .
P.S , This is used to set a new value , If you wanna edit a current value to add or subtract then you have to decrypt the value itself then make the changes then encrypt it again .
Last edited: