game.dll?

09/25/2009 19:02 mildblue#1
Hello I'm trying to script a little bot for Aion. Unfortunatly some of Aions Basepointers look like this: Game.dll+3X4MPL3

[IMG]www2.pic-upload.de/25.09.09/x7i3iun3jky.jpg[/IMG]

I really dont know how to handle with this. Here is is my Code:

Code:
#include <NomadMemory.au3>

Global $PlayerMaxHPOut

Func AionMemoryRead()
SetPrivilege("SeDebugPrivilege", 1)
$ID=_MemoryOpen(ProcessExists("AION.bin"))

;STATIC POINTER Max HP
$PlayerMaxHPPointer = 0x3195DDC4 ;<- This is where Game.dll+Bla should be used
$PlayerMaxHP = _MemoryRead($PlayerMaxHPPointer, $ID)
$PlayerMaxHPOut = $PlayerMaxHP

_MemoryClose($ID)
EndFunc

AionMemoryRead()
MsgBox(0,"Test",$PlayerMaxHpOut)
Please help me! :(