tomtrein

Untitled

Jul 4th, 2016
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. local minFuelAmount = 200
  2. while true do
  3. if turtle.getFuelLevel() < minFuelAmount then
  4. turtle.select(9)
  5. turtle.refuel()
  6. turtle.select(1)
  7. end
  8. while not turtle.forward() do
  9. turtle.dig()
  10. end
  11. while not turtle.down() do
  12. turtle.digDown
  13. end
  14. turtle.select(1)
  15. while not turtle.placeDown() do
  16. turtle.digDown()
  17. end
  18. turtle.up()
  19. turtle.select(2)
  20. if not turtle.placeDown() then
  21. break
  22. end
  23. end
Advertisement
Add Comment
Please, Sign In to add comment