Guest User

Untitled

a guest
Dec 14th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. fuel = function()
  2. if turtle.getFuelLevel() == 0 then
  3. turtle.select(1)
  4. turtle.refuel()
  5. end
  6. end
  7.  
  8. while turtle.detect() ~= true do
  9. fuel()
  10. turtle.forward()
  11. end
  12.  
  13. turtle.dig()
  14. fuel()
  15. turtle.forward()
  16.  
  17. while turtle.detectUp() do
  18. fuel()
  19. turtle.digUp()
  20. turtle.up()
  21. end
  22.  
  23. while not turtle.detectDown() do
  24. fuel()
  25. turtle.down()
  26. end
  27.  
  28. fuel()
  29. turtle.turnRight()
  30. turtle.turnRight()
  31.  
  32. while turtle.detect() ~= true do
  33. fuel()
  34. turtle.forward()
  35. end
  36.  
  37. turtle.transferTo(1,64)
Advertisement
Add Comment
Please, Sign In to add comment