After several hours of widdling down the very simple code I'm left with this:
Code: Select all
mywin = findProcess("AION*");
win = openProcess(mywin);
mainOffset = getModuleAddress(mywin, "Game.dll");
-- local addr=0xFE611020;
-- local tmp = memoryReadInt(myProc,addr);
local name = memoryReadUString(win,0xFA820038);
if name then
name = string.sub(name,2,34);
printf("Address: 0x%x is %s\n",0xFE610E00,name);
end
error:
Code: Select all
WARNING: Failure reading memory from 0x28FA08 at 0x80000000 in memoryReadUString
(). Error code 299 (Only part of a ReadProcessMemory or WriteProcessMemory reque
st was completed.)
