Advertisement
xKevinn

Auto tree cutter

Sep 18th, 2013
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.55 KB | None | 0 0
  1. while true do
  2.     turtle.suckDown()
  3.     if turtle.compare()==false then
  4.         sleep(1)
  5.         turtle.digUp()
  6.         turtle.up()
  7.         turtle.dig()
  8.         turtle.forward()
  9.         turtle.digDown()
  10.         turtle.placeDown()
  11.         while true do
  12.             turtle.digUp()
  13.             turtle.up()
  14.             if turtle.digUp()==false then
  15.                 break
  16.             end
  17.         end  
  18.         while turtle.down()==true do
  19.             turtle.down()
  20.         end        
  21.         turtle.back()
  22.         turtle.down()
  23.     end
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement