Advertisement
ecco7777

CC miningwell placer

Feb 7th, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.41 KB | None | 0 0
  1. function placeWell
  2. turtle.select(1)
  3. turtle.place()
  4. turtle.select(2)
  5. turtle.placeDown()
  6. turtle.up()
  7. turtle.select(3)
  8. turtle.place()
  9. turtle.back()
  10. turtle.select(4)
  11. sleep(5)
  12. turtle.place()
  13. turtle.select(3)
  14. turtle.suck()
  15. turtle.select(4)
  16. turtle.dig()
  17. turtle.forward()
  18. turtle.select(2)
  19. turtle.digDown()
  20. turtle.down()
  21. turtle.select(1)
  22. turtle.dig()
  23. end
  24.  
  25. while true do
  26. placeWell()
  27. turtle.forward()
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement