daemitus / SomethingNeedDoing

85 stars 58 forks source link

Lua Scripts #94

Open Kwehh13 opened 1 year ago

Kwehh13 commented 1 year ago

Is there anyway to repeat a luascript? Also, I don't think retries work with luas.

Nukoooo commented 1 year ago
while true do
    if ShouldStop() then
        break
    end

    DoStuffs()
end

This will repeat DoStuffs() untill the conditions from ShouldShop() meet