Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. -- [Functions] --
  2.  
  3. function refuel()
  4. if turtle.getFuelLevel() < 500 then
  5. turtle.select(16)
  6. turtle.refuel(16)
  7. end
  8. end
  9.  
  10. function clear()
  11. refuel()
  12. turtle.forward()
  13. turtle.dig()
  14. turtle.transferTo(5)--quarry
  15. turtle.turnRight()
  16. turtle.forward()
  17. turtle.turnLeft()
  18. turtle.dig()
  19. turtle.transferTo(8)--dynamo
  20. turtle.up()
  21. turtle.dig()
  22. turtle.transferTo(7)--tesseract
  23. turtle.turnLeft()
  24. turtle.forward()
  25. turtle.turnRight()
  26. turtle.dig()
  27. turtle.transferTo(6)--enderchest
  28. turtle.back()
  29. turtle.down()
  30. end
  31.  
  32. function next()
  33. refuel()
  34. turtle.turnRight()
  35. i = 0
  36. repeat
  37. turtle.forward()
  38. i = i+1
  39. until i == 9
  40. turtle.turnLeft()
  41. end
  42.  
  43. function build()
  44. refuel()
  45. turtle.forward()
  46. turtle.select(5)
  47. turtle.place()--quarry
  48. turtle.turnRight()
  49. turtle.forward()
  50. turtle.turnLeft()
  51. turtle.select(8)
  52. turtle.place()--dynamo
  53. turtle.up()
  54. turtle.select(7)
  55. turtle.place()--tesseract
  56. turtle.turnLeft()
  57. turtle.forward()
  58. turtle.turnRight()
  59. turtle.select(6)
  60. turtle.place()--enderchest
  61. turtle.back()
  62. turtle.down()
  63. end
  64.  
  65. -- [Code] --
  66.  
  67. clear()
  68. next()
  69. build()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement