Jump to content
  • 0

search repeat script error


mybrew70
 Share

Question

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

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • 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.