Find Addresses

01/21/2016 15:09 orve#1
After studying some tutorials forum here I was able to find the memory addresses for freezing, HP, MP, and experience. But now I'm caught not know how to find the other addresses required to use the WQ. Someone could teach me?


Here are the addresses I have ever found:

UnFreeze= 92EFB8
Code:
;~script in autoit
Func MP()
$proces_ID=ProcessExists("ELEMENTCLIENT.EXE")
$handle=_MemoryOpen($proces_ID)
$temp = _MemoryRead(0x00D2EB04,$Handle)
$temp = _MemoryRead($temp+0x28,$Handle )
$temp = _MemoryRead($temp+0x51C,$Handle )

$temp1 = _MemoryRead(0x00D2EB04,$Handle)
$temp1 = _MemoryRead($temp1+0x28,$Handle )
$temp1 = _MemoryRead($temp1+0x4D0,$Handle )

GUICtrlSetData($Label3," MP: "&$temp1&"/"&$temp)

_MemoryClose($handle)

EndFunc

Func HP()
$proces_ID=ProcessExists("ELEMENTCLIENT.EXE")
$handle=_MemoryOpen($proces_ID)
$temp = _MemoryRead(0x00D2EB04,$Handle)
$temp = _MemoryRead($temp+0x28,$Handle )
$temp = _MemoryRead($temp+0x518,$Handle )

$temp1 = _MemoryRead(0x00D2EB04,$Handle)
$temp1 = _MemoryRead($temp1+0x28,$Handle )
$temp1 = _MemoryRead($temp1+0x4CC,$Handle )


GUICtrlSetData($Label2," HP: "&$temp1&"/"&$temp)

_MemoryClose($handle)

EndFunc



Func XP()
$proces_ID=ProcessExists("ELEMENTCLIENT.EXE")
$handle=_MemoryOpen($proces_ID)
 $temp = _MemoryRead(0x00D2EB04,$Handle)
$temp = _MemoryRead($temp+0x28,$Handle)
$temp = _MemoryRead($temp+0x4D4,$Handle )

GUICtrlSetData($Label4," XP: "&$temp)

_MemoryClose($handle)

EndFunc