BOF007

Fir Tree harvester

Jul 21st, 2013
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. -- Quickie tree cutter
  2. local cnt = 0
  3. turtle.dig()
  4. turtle.forward()
  5. turtle.dig()
  6. while turtle.detectUp() do
  7.   turtle.digUp()
  8.   turtle.up()
  9.   if turtle.detect() then
  10.     turtle.dig()
  11.   end
  12.   cnt = cnt + 1
  13. end
  14. turtle.turnRight()
  15. turtle.dig()
  16. turtle.forward()
  17. turtle.turnLeft()
  18. turtle.dig()
  19. for i=1,cnt do
  20.   turtle.digDown()
  21.   turtle.down()
  22.   turtle.dig()
  23. end
Add Comment
Please, Sign In to add comment