Jump to content
  • 0

I Need To Find A way To Get Freezed Vlaues Back To The searching Tab


Enzo_Funny_Gamer

Question

3 answers to this question

Recommended Posts

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}) 

 

Link to comment
Share on other sites

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

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

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.