Chase Payne Grandmaster Cheater
Reputation: 1
Joined: 20 Mar 2008 Posts: 533
|
Posted: Tue Apr 15, 2008 4:19 pm Post subject: AA problem... please help |
|
|
OK I just found out how to get pointers working on AA... but how do I make the value increase every second... Like the minesweeper time script
| Code: | 01004578:
inc [00DCD7E6]
add [00DCD7E6],2 |
(When you edited the time on minesweeper and put this in the value increases by 2 every second instead of 1 every second)
| Code: | [ENABLE]
//code from here to '[DISABLE]' will be used to enable the cheat
alloc(newmem,2048) //2kb should be enough
label(returnhere)
label(originalcode)
label(exit)
00421BD6:
jmp newmem
nop
returnhere:
newmem:
mov [edx+10],eax
mov ecx,[ebp-04]
mov eax [00DCD7E6] // Pointer adress
ADD EAX,10
ADD [EAX],#100000000
INC [EAX] //this is allocated memory, you have read,write,execute access
//place your code here
originalcode:
//mov [edx+10],eax
//mov ecx,[ebp-04]
exit:
jmp returnhere
[DISABLE]
DEALLOC(NEWMEM)
00421BD6:
mov [edx+10],eax
mov ecx,[ebp-04]
//code from here till the end of the code will be used to disable the cheat
|
For example....
| Quote: | Value 100
1 second later
Value 200
1 second later
Value 300
and so on |
|
|