|
ah yes there is one thing i wanted to know from ppl allready knowing how to edit client
First, go to the address 00411145 you should see this:
MOVZX EAX,BYTE PTR SS:[ESP+A9]
The command above reads your access level and moves it to the EAX Register (Padded with 0's), so what you need to do is create your own function to write your own access level.
So you create a call at that address to a code cave you found/created, in this example, I'll be using the address 008F39D1 as my code cave.
So you change the code at 00411145 to:
CALL 008F39D1
then you go to 008F39D1 and write this code:
MOV BYTE PTR SS:[ESP+0A9],0FA
MOVZX EAX,BYTE PTR SS:[ESP+0A9]
RETN
how can i write many rows of code how can i brake the code?
i just cant understand how to i put in those 3 last rows
|