RezaHaxz Posted March 23, 2020 Posted March 23, 2020 local r = gg.searchNumber(300,gg.TYPE_DWORD) gg.clearResults() how to get r value back after clearResults to search list?(not in save list)
CmP Posted March 23, 2020 Posted March 23, 2020 You need to call "getResults" function to store results list in a variable. For example: gg.searchNumber('300', gg.TYPE_DWORD) local r = gg.getResults(100) Then, when results list has been cleared and you want to restore saved results, just use "loadResults" function: gg.loadResults(r)
RezaHaxz Posted March 24, 2020 Author Posted March 24, 2020 7 hours ago, CmP said: You need to call "getResults" function to store results list in a variable. For example: 7 hours ago, CmP said: You need to call "getResults" function to store results list in a variable. For example: gg.searchNumber('300', gg.TYPE_DWORD) local r = gg.getResults(100) Then, when results list has been cleared and you want to restore saved results, just use "loadResults" function: gg.loadResults(r) Then, when results list has been cleared and you want to restore saved results, just use "loadResults" function: gg.loadResults(r) Thank you so much!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.