Page 1 of 1

[Help] Need Help with an AA script

Posted: Sat Sep 19, 2009 11:58 am
by Lyin
I need help with this script I'm working on. Maple always crash when I enter the rangex value into the EIP register of the address(0069F2AE). I think is either my script is totally wrong, or my address is way off; can anyone help me with this? (Yes, this script is old school style)

Code: Select all

[enable]
registersymbol(rangeX)
registersymbol(rangeY)
alloc(rangeX,64)
alloc(rangeY,128)

rangeX:
mov edx,[00be29e8]
lea edx,[edx+F50]
mov ecx,[edx]
jmp rangeY

rangeY:
mov edx,[00be29e8]
lea edx,[edx+F50]
lea eax,[edx]
mov eax,[eax]
jmp 0069F2AE


[disable]
unregistersymbol(rangeX) 0069F2AE
unregistersymbol(rangeY)
dealloc(rangeX,64)
dealloc(rangeY,128)

Re: [Help] Need Help with an AA script

Posted: Sat Sep 19, 2009 12:27 pm
by Jeof
What script is this ?

Re: [Help] Need Help with an AA script

Posted: Sat Sep 19, 2009 12:40 pm
by Lyin
sorry I forgot to put it in.

This is an old DEM script I used to use about...2 years ago lol. (I updated several things though)

Re: [Help] Need Help with an AA script

Posted: Sun Sep 20, 2009 2:16 pm
by Boredness
the offset is wrong

Re: [Help] Need Help with an AA script

Posted: Sun Sep 20, 2009 6:46 pm
by Lyin
Boredness wrote:the offset is wrong
thanks for giving the hint. At least I now know where to start correcting.