Matze500 Expert Cheater
Reputation: 8
Joined: 25 Jan 2012 Posts: 241 Location: Germany
|
Posted: Fri Aug 05, 2016 8:49 pm Post subject: |
|
|
First a few questions.
In which register on which instruction is your playerbase?
Is it eax before or after the lea or is it one of the other registers?
First you have to do make an compare on cmp [register+54],#10 then a jne code or an other label i would rewrite the line jmp code to jmp newmem and would compare there.
Then you have to move [register+28] in ecx.
Replace register with the baseaddress register.
It would look like this then if in eax is the baseaddress and thats the correct line:
Code: | newmem:
cmp [eax+54],#10
jne code
mov ecx,[eax+28]
code:
mov [eax],ecx
lea eax,[esi+8]
jmp return
INJECT:
jmp newmem
return: |
Greets Matze
_________________
|
|