I cannot seem to get the Player xp... Im using this code(Autoit) Its not my full code...
Code:
$Playerbase = 0x010BD5F4
$PlayerExp = 0x980
$PlayerMaxExp = 0x984
$Off1=0x34
$Off2=0x24
SETPRIVILEGE("SeDebugPrivilege", 1)
Dim $ProPID = WinGetProcess("World of Warcraft")
$wowprocess = _MemoryOpen($ProPID)
Global $LVL1POINTER = _MemoryRead($Playerbase, $wowprocess, "ptr")
Global $LVL2POINTER = _MemoryRead(($LVL1POINTER + $Off1), $wowprocess, "ptr")
Global $PlayerMEM = _MemoryRead(($LVL2POINTER+ $Off2), $wowprocess, "ptr")
Global $Plrnowxpread = $PlayerMEM + $PlayerExp
Global $Plrmaxxpread = $PlayerMEM + $PlayerMaxExp
GUICtrlSetData($plrnowxp, "Player xp: " & _MEMORYREAD($Plrnowxpread, $wowprocess, "int"))
GUICtrlSetData($plrmaxxp, "Player max xp: " & _MEMORYREAD($Plrmaxxpread, $wowprocess, "int"))
When run i get this the wrong info
Any ideas?