Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. local move = 0
  2.  
  3. turtle.refuel()
  4. sleep(5)
  5.  
  6.  
  7. for i = 1, 128 do
  8.  
  9.  
  10. if move == 64 then
  11. turtle.select(3)
  12. print("Worked")
  13. turtle.placeDown()
  14. turtle.forward()
  15. move = move+1
  16. print(move)
  17. end
  18. else
  19. turtle.select(2)
  20. turtle.placeDown()
  21. turtle.forward()
  22. move = move+1
  23. print(move)
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement