Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.16 KB | None | 0 0
  1. local function doUntil(f, check)
  2.   while not check(f()) do
  3.     sleep(6)
  4.   end
  5. end
  6.  
  7. doUntil(robot.drain, function(i) return i end)
  8.  
  9. taskTwo()
  10. -- And so on.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement