Code:#include <NomadMemory.au3> Opt("WinTitleMatchMode", -1) SetPrivilege("SeDebugPrivilege", 1) $D3Exefile = "Diablo III.exe" $list = ProcessList() for $i = 1 to $list[0][0] if $list[$i][0] = $D3Exefile Then Global $ProcessID = $list[$i][1] ExitLoop EndIf next Local $d3 = _MemoryOpen($ProcessID) If @Error Then MsgBox(4096, "ERROR", "Failed to open memory for process;" & $ProcessID) Exit EndIf ;read player gold amount $gold = _MemoryRead(0x35B08E88,$d3) MsgBox(0,"",$gold)