Advertisement
Guest User

quarry

a guest
Jun 28th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.91 KB | None | 0 0
  1. print("Put the quarry in the first slot, the enderchest in the second slot, and the dimentional transceiver in the third slot. If you understand and have put it in the slots type yes and press enter.")
  2. x = read()
  3. step = 1
  4. while true do
  5. turtle.turnRight()
  6. turtle.forward()
  7. turtle.forward()
  8. turtle.forward()
  9. turtle.forward()
  10. turtle.forward()
  11. turtle.turnLeft()
  12. turtle.back()
  13. turtle.select(1)
  14. turtle.place()
  15. turtle.up()
  16. turtle.select(2)
  17. turtle.place()
  18. turtle.down()
  19. turtle.turnRight()
  20. turtle.forward()
  21. turtle.turnLeft()
  22. turtle.select(3)
  23. turtle.place()
  24. turtle.turnLeft()
  25. turtle.forward()
  26. turtle.turnRight()
  27. turtle.back()
  28. os.sleep(900)
  29. turtle.forward()
  30. turtle.select(1)
  31. turtle.dig()
  32. turtle.up()
  33. turtle.select(2)
  34. turtle.dig()
  35. turtle.down()
  36. turtle.turnRight()
  37. turtle.forward()
  38. turtle.turnLeft()
  39. turtle.select(3)
  40. turtle.dig()
  41. turtle.forward()
  42. turtle.turnLeft()
  43. turtle.forward()
  44. turtle.turnRight()
  45. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement