TemporalMalice How do I cheat?
Reputation: 0
Joined: 03 Dec 2025 Posts: 2
|
Posted: Wed Dec 03, 2025 6:10 am Post subject: Unable to get AutoIt KryMemory to work using Offsets |
|
|
Hi,
I have recently comeback to AutoIt and I am trying to read the pointers shown in the image below using AutoIt KryMemory. I have tried different code, manually looping through offsets and other stuff but failed to get it to work. I am running this on Windows 11. I remember using KryMemory many years ago on Windows 7 and I had no such issues.
The last code I tried is below. I am also willing to use "NomadMemory2.au3" which I cannot get to work also.
| Code: |
#RequireAdmin ;User Account must have Administrator privileges
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
;#include <NomadMemory.au3>
;#include <NomadMemory2.au3>
#include <KryMemory.au3>
Local $ProcName = "ProcessName.exe"
Local $StaticOffset = 0x04E51870
Local $Offsets= [0x118, 0x358, 0x504]
KryRead()
;NomadRead()
Func KryRead()
local $PROCESS = _Process_Open($ProcName, $PROCESS_ALL_ACCESS, False)
local $BaseAddress = _Process_GetBaseAddress($PROCESS)
;MsgBox(0, "Pointer Read", "KryBase: " & $BaseAddress)
$FinalAddress = Hex($BaseAddress + $StaticOffset)
local $Result = _Process_ReadMemoryPointer($PROCESS, $FinalAddress, $Offsets, 'float') ; type = ( byte, float, dword, char[], byte[] ... etc )
MsgBox(0, "HP Pointer Read Success", "Kry: " & $Result)
_Process_Close($PROCESS)
EndFunc
|
| Description: |
| The pointers I am trying to recreate in AutoIt |
|
| Filesize: |
48.84 KB |
| Viewed: |
476 Time(s) |

|
|
|
TemporalMalice How do I cheat?
Reputation: 0
Joined: 03 Dec 2025 Posts: 2
|
Posted: Sat Dec 06, 2025 4:57 am Post subject: |
|
|
After much research, I believe the error, is something to do with KryMemory only be able to work with 32bit memory. If anyone knows how to make it work in 64bit. I would really appreciate it.
I am unable to attach the KryMemory file, but it is easily found through google.
|
|