[ @qeon ]
---
gg.searchNumber("233;5;100::9", gg.TYPE_DWORD)
gg.refineNumber('233', gg.TYPE_DWORD)
results = gg.getResults()
gg.editAll('45000', gg.TYPE_DWORD)
gg.clearResults()
while(true)
if gg.getValues({{address=results[1].address, flags=results[1].flags}}).value == '233' then
gg.getValues(results)
gg.editAll('45000', gg.TYPE_DWORD)
gg.clearResults()
gg.sleep(5000) --in milisecond (5 second)
end
It uses infinite loop to check the value every 5 second, if the value is '233' then it will change it again to '45000'. Adjust accordingly, this is just a concept.
---