Hi, I need guidance here, About that gg.sleep seems not working on my script Bellow.
The saved lists seems will be reverting soon after the searching or script has finished without waiting about 5 minutes to sleep. And freeze is gone .
This freeze I must do when I entering the map game and must revert back after game play is over. If not my game will be crashed.
If I do reverting for different function reverting() menu is always come crash anyway. Is there a solution or mistakes I made this script? Tks for help anyway.
Ps: I use unanymous memory range.
gg.clearResults() gg.searchNumber('2.57754444', gg.TYPE_FLOAT)
local t = gg.getResults(13)
for i, v in ipairs(t) do
t.value = '1.92456'
t.freeze = true
end
print('Replaced: ', gg.addListItems(t))
local v = 5000
gg.sleep(v)
gg.searchNumber('1.92456', gg.TYPE_FLOAT)
local t = gg.getResults(13)
for i, v in ipairs(t) do
t.freeze = false
end
print('Replaced: ', gg.removeListItems(t))