Advertisement
Guest User

Untitled

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