- 0
pointer search bug
-
Similar Content
-
- 3 answers
- 1,038 views
-
- 0 replies
- 1,194 views
-
- 34 comments
- 71,710 views
-
- 1 comment
- 3,925 views
-
Pointer scan
By Enyby,
- 0 comments
- 43,350 views
-
By Enyby,
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
derbeyonder
script code:
local results = gg.getResults(gg.getResultsCount())
for i,v in ipairs(results) do
gg.setRanges(gg.REGION_ANONYMOUS)
gg.searchNumber(v.address - 0x0, gg.TYPE_DWORD)
end
log file:
gg.getResultsCount()
gg.getResults(6)
--[[ count: 6 ]]
gg.setRanges(gg.REGION_ANONYMOUS)
gg.searchNumber(1666332864, gg.TYPE_DWORD)
--[[ found: 0 ]]
gg.setRanges(gg.REGION_ANONYMOUS)
gg.searchNumber(1666333760, gg.TYPE_DWORD)
--[[ found: 1 ]]
gg.setRanges(gg.REGION_ANONYMOUS)
gg.searchNumber(2085230528, gg.TYPE_DWORD)
--[[ found: 0 ]]
gg.setRanges(gg.REGION_ANONYMOUS)
gg.searchNumber(2090407328, gg.TYPE_DWORD)
--[[ found: 2 ]]
gg.setRanges(gg.REGION_ANONYMOUS)
gg.searchNumber(2123701312, gg.TYPE_DWORD)
--[[ found: 0 ]]
gg.setRanges(gg.REGION_ANONYMOUS)
gg.searchNumber(2195650848, gg.TYPE_DWORD)
--[[ found: 1 ]]
when i run the script only the 2nd, 4th and 6th results are searched. but in the log file all 6 results are shown as searched.
Link to comment
Share on other sites
1 answer 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