jjswebs

Untitled

Apr 24th, 2013
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. function fuel()
  2. if turtle.getFuelLevel() < 10 then
  3. turtle.select(16)
  4. turtle.refuel(1)
  5. turtle.select(1)
  6. end
  7. end
  8. function detectdown()
  9. turtle.select(15)
  10. while turtle.compareDown() do
  11. fuel()
  12. turtle.digDown()
  13. turtle.down()
  14. end
  15. end
  16. function cut()
  17. fuel()
  18. turtle.dig()
  19. turtle.turnRight()
  20. turtle.dig()
  21. turtle.turnLeft()
  22. end
  23. fuel()
  24. turtle.dig()
  25. turtle.forward()
  26. turtle.select(15)
  27. while turtle.compareUp() do
  28. cut()
  29. fuel()
  30. turtle.digUp()
  31. turtle.up()
  32. end
  33. cut()
  34. fuel()
  35. turtle.forward()
  36. turtle.turnRight()
  37. turtle.dig()
  38. turtle.forward()
  39. fuel()
  40. detectdown()
Add Comment
Please, Sign In to add comment