Hello,
I don't arrived to read a value from Pointer with the correct Pointer...
I've choose a static one who not change at every restart ! But the value Still 0...
Can someone help me ?
I don't arrived to read a value from Pointer with the correct Pointer...
I've choose a static one who not change at every restart ! But the value Still 0...
Can someone help me ?
Code:
#RequireAdmin #include <Pointer.au3> Global $Handle = 0, $PId = 0 Global const $Process = "NosWizz.exe" Global const $Basepointer = 0x082C14C Global const $Offsets[3] = [0, "4C", "AC"] While True if not IsArray($Handle) Then $PId = ProcessExists($Process) if $PId > 0 Then $Handle = _MemoryOpen($PId) if IsArray($Handle) Then MsgBox(64,"Info","Game was opened") Else MsgBox(48,"Error","Cannot find game!") EndIf EndIf if IsArray($Handle) Then Local $mem_Read = _MemoryPointerRead($Basepointer, $Handle, $Offsets, "DWORD") if IsArray($mem_Read) Then MsgBox (0,"",$mem_Read[1]) Else MsgBox (48,"Error","Cannot read pointer!") EndIf EndIf WEnd
[Only registered and activated users can see links. Click Here To Register...]