Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local function doUntil(f, check)
  2.   while not check(f()) do
  3.     sleep(6)
  4.   end
  5. end
  6.  
  7. local function someLongfunction()
  8. -- stuff
  9. -- stuff-- stuff
  10. -- stuff
  11. -- stuff-- stuff
  12. -- stuff-- stuff-- stuff
  13. -- stuff
  14. -- stuff
  15. -- stuff-- stuff
  16. end
  17.  
  18. doUntil(someLongFunction, function(i) return i end)
  19.  
  20. taskTwo()
  21. -- And so on.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement