Advertisement
Guest User

cut

a guest
Mar 1st, 2015
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.51 KB | None | 0 0
  1. isBlock, surface = turtle.inspectDown()
  2. while (surface.name == Botania.livingwood) do
  3.   a, block = turtle.inspect()
  4.   if block.name == minecraft.log then
  5.     turtle.dig()
  6.     turtle.forward()
  7.    
  8.     while turtle.digUp() do
  9.       turtle.up()
  10.     end
  11.    
  12.     while turtle.down() do
  13.     end
  14.    
  15.     turtle.back()
  16.     turtle.select(16)
  17.     turtle.place()
  18.   end
  19. end
  20. isBlock, surface = inspectDown()
  21. turtle.turnRight()
  22. turtle.forward()
  23. while (surface != Botania.livingwood) do
  24.   turtle.forward()
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement