[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)






