Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 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.  
  14. else
  15. turtle.placeDown()
  16. turtle.forward()
  17. move = move+1
  18. print(move)
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement