モジュールのメモリをベース サイズからモジュール サイズにコピーするのに 5 年もかからず、コンピューターの CPU が空よりも高くなるようにしようとしてきました。
私がまとめたこのスクリプトは Cheat Engine LUA にあり、読み取りによってメモリをコピーし、各バイトを 1 行に出力して、割り当てられたスペースに書き込むために使用できるようにします (memcopy // newmem2):
autoAssemble[[
alloc(newmem2, 2048)
label(memcopy)
registerSymbol(memcopy)
newmem2:
memcopy:
]]
for i = 0x00, getModuleSize("Notepad.exe") do
x = readBytes(getAddress("Notepad.exe+0" .. string.format("%x", i)))
if (string.len(x) == 1) then
print(x .. "0")
else
print(string.upper(string.format("%x", x)))
end
if (isKeyPressed(VK_F) == true) then break end
end
私は基本的に、割り当てられたスペースに正確なモジュールを再作成しようとしています (スクリプト内にメモリを書きません)。
助けていただければ幸いです。