Pointers using AA scripts?

Submit Tutorials Related to Memory Hacking Software

Moderators: g3nuin3, SpeedWing, WhiteHat, mezzo

Pointers using AA scripts?

Postby liqmysaq » Sun Jun 28, 2009 3:37 am

can somebody plz teach me how to do pointers using AA script?

here is an example pointer: [[[game.exe+3070A0]+68]+1e4]

can somebody plz show me how to write this in AA so i can set the value at 0 (or any other value since its just an example). also plz tell me why you did what you did, like explain any alloc or symbols or push, ecx, pop, or whatever. I appreciate it :)
User avatar
liqmysaq
I Know Your Poop
 
Posts: 538
Joined: Tue Jan 01, 2008 2:02 am

Postby Aspras » Sun Jun 28, 2009 5:08 am

What are you reffering to with "AA" ? Cant be anti-aliasing right ? :P
User avatar
Aspras
NULL
 
Posts: 100
Joined: Mon Jan 05, 2009 12:42 am

Postby L. Spiro » Sun Jun 28, 2009 9:02 am

I really doubt there needs to be much explanation of the instruction.

mov eax, [game.exe+3070A0]
mov eax, [eax+68]
mov eax, [eax+1E4]
; EAX now contains the same result as [[[game.exe+3070A0]+68]+1e4]



If the Complex Address does not end with [], load the effective address instead of the contents of the address ([] = load value at address).


mov eax, [game.exe+3070A0]
mov eax, [eax+68]
mov lea, [eax+1E4]
; EAX now contains the same result as [[game.exe+3070A0]+68]+1e4




The less amazing way:
mov eax, [game.exe+3070A0]
mov eax, [eax+68]
inc eax, 1E4
; EAX now contains the same result as [[game.exe+3070A0]+68]+1e4



L. Spiro
Our songs remind you of songs you’ve never heard.
User avatar
L. Spiro
L. Spiro
 
Posts: 3129
Joined: Mon Jul 17, 2006 10:14 pm
Location: Tokyo, Japan

Postby WhiteHat » Mon Jun 29, 2009 12:57 pm

L. Spiro wrote:mov eax, [game.exe+3070A0]
mov eax, [eax+68]
mov lea, [eax+1E4]
; EAX now contains the same result as [[game.exe+3070A0]+68]+1e4

Isn’t the red-colored line suppose to be: lea eax, [eax+1E4] ?
Or is it another syntax which also works (i haven’t tested it yet) ?
.. to boldly go where no eagle has gone before...
User avatar
WhiteHat
Elang Djawa
 
Posts: 1059
Joined: Fri Jul 21, 2006 12:49 pm
Location: Away for a while...

Postby L. Spiro » Mon Jun 29, 2009 5:05 pm

It is supposed to be:
Code: Select all
lea eax, [eax+1E4]


Chrome has gay handling of the Home and End buttons.


L. Spiro
Our songs remind you of songs you’ve never heard.
User avatar
L. Spiro
L. Spiro
 
Posts: 3129
Joined: Mon Jul 17, 2006 10:14 pm
Location: Tokyo, Japan


Return to Tutorials

Who is online

Users browsing this forum: No registered users and 0 guests

cron