Advertisement
0xSRK6

Computercraft Tree Mine

Apr 13th, 2023
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. local function chopSlice()
  2. turtle.dig()
  3. turtle.forward()
  4. turtle.turnLeft()
  5. turtle.dig()
  6. turtle.forward()
  7. turtle.turnLeft()
  8. turtle.dig()
  9. turtle.forward()
  10. turtle.turnLeft()
  11. turtle.forward()
  12. turtle.turnLeft()
  13. end
  14.  
  15. local function elevate()
  16. turtle.digUp()
  17. turtle.up()
  18. end
  19.  
  20. local function main()
  21. local i = 1
  22. turtle.dig()
  23. turtle.forward()
  24. while turtle.compare() do
  25. chopSlice()
  26. elevate()
  27. i = i + 1
  28. end
  29. for _ = i, 1, -1 do
  30. turtle.down()
  31. end
  32. end
  33.  
  34. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement