gg.setRanges(gg.REGION_ANONYMOUS)-- Set memory range to anonymous
gg.clearResults()-- Clear previous results
gg.searchNumber("2096;10::5", gg.TYPE_DWORD)-- Search for 2096 and 10 with distance 5
gg.refineNumber("2096", gg.TYPE_DWORD,false, gg.SIGN_NOT_EQUAL)-- Exclude 2096local res1 = gg.getResults(gg.getResultsCount())for i, v in ipairs(res1)do
res1[i].address = res1[i].address +8
res1[i].flags = gg.TYPE_DWORD
end
gg.loadResults(res1)
gg.searchNumber("12~199", gg.TYPE_DWORD,true, gg.SIGN_EQUAL)-- Search for 12 to 199local number = gg.getResults(1)local res2 = gg.getResults(26)for i, v in ipairs(res2)do
res2[i].address = res2[i].address +8
res2[i].flags = gg.TYPE_DWORD
end
gg.loadResults(res2)-- Load modified results
gg.searchNumber(dword value from filter 670, gg.TYPE_DWORD,false, gg.SIGN_EQUAL)
I want to get value from result 26 above and filter it with '670$' and copy dword this hex 3E9EC670 and search dword value from 3E9EC670
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
notzagred
please help me to get value in filter script
this my code
I want to get value from result 26 above and filter it with '670$' and copy dword this hex 3E9EC670 and search dword value from 3E9EC670
2 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