SomethingNeedDoing
SomethingNeedDoing copied to clipboard
Lua Scripts
Is there anyway to repeat a luascript? Also, I don't think retries work with luas.
while true do
if ShouldStop() then
break
end
DoStuffs()
end
This will repeat DoStuffs() untill the conditions from ShouldShop() meet