Advertisement
maxtorcd55

Untitled

Jan 21st, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. goldy = 14
  2.  
  3. while true do
  4. turtle.refuel(10)
  5.  
  6. turtle.dig()
  7. turtle.digUp()
  8. turtle.digDown()
  9.  
  10.  
  11. turtle.select(2)
  12.  
  13. goldy = goldy - 1
  14. if goldy <= 0 then
  15. turtle.select(3)
  16. end
  17.  
  18. if goldy < 0 then
  19. goldy = 14
  20. end
  21.  
  22. turtle.placeDown()
  23. turtle.select(1)
  24. turtle.forward()
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement