mjmac85

Untitled

Mar 21st, 2013
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. term.clear()
  2. term.setCursorPos(1,1)
  3.  
  4. repeat
  5. print("Enter tunnel Length (even number): ")
  6. length = read()
  7. until length % 2 == 0
  8.  
  9. repeat
  10. print("Place fuel in slot 1.")
  11. until turtle.select(1) != 0
  12. repeat
  13. print("Place torches in slot 2.")
  14. until turtle.select(2) != 0
Advertisement
Add Comment
Please, Sign In to add comment