Guest User

Untitled

a guest
Jan 12th, 2013
373
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 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.  
  9. function detectdown()
  10. turtle.select(15)
  11. while turtle.compareDown() do
  12. fuel()
  13. turtle.digDown()
  14. turtle.down()
  15. end
  16. end
  17.  
  18. function cut()
  19. fuel()
  20. turtle.dig()
  21. turtle.turnRight()
  22. turtle.dig()
  23. turtle.turnLeft()
  24. end
  25.  
  26. fuel()
  27. turtle.dig()
  28. turtle.forward()
  29. turtle.select(15)
  30. while turtle.compareUp() do
  31. cut()
  32. fuel()
  33. turtle.digUp()
  34. turtle.up()
  35. end
  36. cut()
  37. fuel()
  38. turtle.forward()
  39. turtle.turnRight()
  40. turtle.dig()
  41. turtle.forward()
  42. fuel()
  43. detectdown()
Advertisement
Add Comment
Please, Sign In to add comment