Enzo_Funny_Gamer Posted May 31, 2021 Posted May 31, 2021 here is the freeze tab i want to get the value in the to get to the search tab but by script this is the search tab
WhoKnowsWho Posted May 31, 2021 Posted May 31, 2021 gg.searchNumber('500', gg.TYPE_DWORD) t = gg.getResults(100) gg.addListItems(t) gg.clearResults() --[rest of the code] gg.loadResults(t) --[loads the results from the table] Reference: https://gameguardian.net/help/classgg.html#ade5f40667e80938ba1678d0623fe7b82
MrKendom Posted June 1, 2021 Posted June 1, 2021 number = "13F" gg.searchNumber(number, (function () if number:match("%U") == "F" then return gg.TYPE_FLOAT elseif number:match("%U") == "D" then return gg.TYPE_DWORD elseif number:match("%U") == "Q" then return gg.TYPE_QWORD else return error(" NOP ") end end)()) tRes = gg.getResults(gg.getResultsCount()) for i,ii in pairs(tRes) do gg.addListItems({[i] = {value = ii["value"],flags = ii["flags"],type = ii["type"], freeze = true})
Enzo_Funny_Gamer Posted June 2, 2021 Author Posted June 2, 2021 On 5/31/2021 at 12:16 PM, WhoKnowsWho said: gg.searchNumber('500', gg.TYPE_DWORD) t = gg.getResults(100) gg.addListItems(t) gg.clearResults() --[rest of the code] gg.loadResults(t) --[loads the results from the table] Reference: https://gameguardian.net/help/classgg.html#ade5f40667e80938ba1678d0623fe7b82 thanks i did not think about loading the results i was to bussy whit my encryption [added 0 minutes later] On 5/31/2021 at 10:53 PM, MrKendom said: number = "13F" gg.searchNumber(number, (function () if number:match("%U") == "F" then return gg.TYPE_FLOAT elseif number:match("%U") == "D" then return gg.TYPE_DWORD elseif number:match("%U") == "Q" then return gg.TYPE_QWORD else return error(" NOP ") end end)()) tRes = gg.getResults(gg.getResultsCount()) for i,ii in pairs(tRes) do gg.addListItems({[i] = {value = ii["value"],flags = ii["flags"],type = ii["type"], freeze = true}) nice mrKendom
Question
Enzo_Funny_Gamer
this is the search tab
3 answers to this question
Recommended Posts
Archived
This topic is now archived and is closed to further replies.