Hello guys this is my script code
local input = gg.prompt(
{"search value", "repeat value"},
{1,10},
{"number", "number"}
)
local searchVal = input[1]
local repeatVal = input[2]
gg.setRanges(gg.REGION_ANONYMOUS)
for i=1, repeatVal do
gg.searchNumber(searchVal, gg.TYPE_DWORD)
local results = gg.getResults(gg.getResultCount())
gg.loadResults(results)
gg.sleep(2000)
end
I made a script to repeat the search results every two seconds for a set number of times.
It works in very few results, but in large results (10,000 or more), you search for a new one all of a sudden, and then "gameguardian" breaks down.
I can't search anymore, I can't shut down the script, and I have to turn off "gameguardian" itself. Can someone please fix this? Thank you