gg.searchNumber("980001~980060;2~10;1~99::9", gg.TYPE_DWORD, false, gg.SIGN_EQUAL, 0, -1)
local t = gg.getResults(999999)
local out = {}
for i, v in ipairs(t) do
if i % 3 == 0 then
out[#out + 1] = v
end
end
gg.addListItems(out)
gg.clearResults()
--
gg.searchNumber("82550;1~10;5~7::9"), gg.TYPE_WORD, false, gg.SIGN_EQUAL, 0, -1)
local t = gg.getResults(999999)
local out = {}
for i, v in ipairs(t) do
if i % 3 == 0 then
out[#out + 1] = v
end
end
gg.addListItems(out)
gg.clearResults()
Right so here's my current script. I wanted to do the 1000~980060 range but somehow i got all other stuff instead.
So i wanted to do seperate searches within the same script, but somehow it doesnt search the second search? Anything i'm doing wrong?