- 0
combine prompt + offset
-
Similar Content
-
Find offset
By trafo,
- 9 answers
- 3,620 views
-
- 11 answers
- 16,504 views
-
- 25 answers
- 3,699 views
-
- 3 answers
- 1,578 views
-
- 7 answers
- 1,948 views
-
By trafo,
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.
Question
blocx
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
10 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now