Advertisement
Guest User

Miner

a guest
Jul 21st, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. print("Mining Software")
  2. local Tunnel_length = 100
  3.  
  4. function DigRow()
  5. turtle.dig()
  6. turtle.digUp()
  7. turtle.digDown()
  8. end
  9.  
  10. function DigAll()
  11. turtle.dig()
  12. turtle.forward()
  13. DigRow()
  14. turtle.turnRight()
  15. turtle.dig()
  16. turtle.forward()
  17. DigRow()
  18. turtle.turnLeft()
  19. turtle.turnLeft()
  20. turtle.forward()
  21. turtle.dig()
  22. turtle.forward()
  23. DigRow()
  24. turtle.turnRight()
  25. turtle.turnRight()
  26. turtle.forward()
  27. turtle.turnLeft()
  28. end
  29.  
  30.  
  31. turtle.refuel(1)
  32. DigAll()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement