Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function doUntil(f, check)
- while not check(f()) do
- sleep(6)
- end
- end
- local function someLongfunction()
- -- stuff
- -- stuff-- stuff
- -- stuff
- -- stuff-- stuff
- -- stuff-- stuff-- stuff
- -- stuff
- -- stuff
- -- stuff-- stuff
- end
- doUntil(someLongFunction, function(i) return i end)
- taskTwo()
- -- And so on.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement