Posted: Thu Aug 23, 2018 4:21 pm Post subject: help range adress
This my Scrypt
local scan = 00 00 00 00 00 00';
local replace = '00 00';
local replace_table = {};
for byte in string.gfind(replace, "[^%s]+") do
table.insert(replace_table, tonumber('0x'..byte));
end
local data = AOBScan(scan);
if (data) then
local count = data.getCount();
for i=0, count-1 do
local address = data.getString(i);
writeBytes(address, replace_table);
end
end
i wan search address 0x400000 - 0x700000
thx
surprisingly lua doesn't have a range scan unless you jump to the full memscan, though if you only cared about the first address you could use autoAssemble and AA's aobscanregon (or I suppose use autoAssemble multiple times if you did care about all of the results)
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