You're reading lots of addresses, so CE goes into unresponsive state (until the loop completes), so it might take a few minutes.
It would be better to store them in a table and then print.
Code:
a = 0x15F38AAE340
local t = {}
for i=0,3000000,4 do
local value = ("%X"):format(readInteger(a+i));
t[#t+1] = value
processMessages()
-- print(value); -- better to print everything at once than each value
end
local s = table.concat(t,'\r\n');
print(s);
writeToClipboard(s);
_________________
I'm rusty and getting older, help me re-learn lua.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum