hi someone can corect me if its possible.off.course it for jump stage ( group search + offset seem to be good )
local t = gg.TYPE_DWORD
local prompt = gg.prompt(
{'Enter your desired level :'},
{nil,nil},
{'number'}
)
if prompt==nil then
os.exit()
end
v1 = tonumber(prompt[1])
gg.setRanges(gg.REGION_ANONYMOUS)
gg.searchNumber("1000;1800::", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 0)
gg.refineNumber("1000", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1, 0)
r = gg.getResults(100)
local t = {}
t[1] = {}
t[1].address = r[1].address + 0x9C
t[1].flags = gg.TYPE_DWORD
t[1].value =
gg.clearResults()
gg.toast("ENJOY")
if gg.getResultsCount()==0 then
print('No results found.')
os.exit()
end
while true do
if gg.isVisible() then
gg.setVisible(false)
main()
end
end