View previous topic :: View next topic |
Author |
Message |
knightblizs Advanced Cheater
Reputation: 0
Joined: 18 Jun 2013 Posts: 56
|
Posted: Sat Jul 27, 2013 8:37 pm Post subject: how to change all value by using code injection ? |
|
|
i want change all value in that address to 0 (4 byte)
i tried
Code: | [ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048)
label(returnhere)
label(originalcode)
label(exit)
newmem: //this is allocated memory, you have read,write,execute access
//place your code here
mov [eax+10],0
originalcode:
mov ecx,[eax+10]
mov [ebp-20],ecx
exit:
jmp returnhere
0AA90412:
jmp newmem
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
0AA90412:
mov ecx,[eax+10]
mov [ebp-20],ecx
//Alt: db 8B 48 10 89 4D E0 |
but not work
is there something wrong?
Description: |
|
Filesize: |
38.77 KB |
Viewed: |
3739 Time(s) |

|
|
|
Back to top |
|
 |
Dark Byte Site Admin
Reputation: 470
Joined: 09 May 2003 Posts: 25791 Location: The netherlands
|
Posted: Sun Jul 28, 2013 3:03 am Post subject: |
|
|
Don't the values change to 0 or doesn't it have the required effect? (E.g enemies don't automatically die)
_________________
Do not ask me about online cheats. I don't know any and wont help finding them.
Like my help? Join me on Patreon so i can keep helping |
|
Back to top |
|
 |
knightblizs Advanced Cheater
Reputation: 0
Joined: 18 Jun 2013 Posts: 56
|
Posted: Sun Jul 28, 2013 4:15 am Post subject: |
|
|
This flyhack, value 0 to be able jump and when jump value changed to ramdom and i want freeze value 0 so to be able jump again
|
|
Back to top |
|
 |
smx Newbie cheater
Reputation: 0
Joined: 02 Sep 2012 Posts: 13
|
Posted: Sun Aug 04, 2013 8:00 am Post subject: |
|
|
Try this
Code: | [ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048)
label(code)
label(returnhere)
newmem:
code:
mov [ebp-20],00000000
jmp returnhere
0AA90412:
jmp code
nop
returnhere:
[DISABLE]
//code from here till the end of the code will be used to disable the cheat
dealloc(newmem)
0AA90412:
mov ecx,[eax+10]
mov [ebp-20],ecx
//Alt: db 8B 48 10 89 4D E0 |
|
|
Back to top |
|
 |
|