Advertisement
Guest User

WoodFarmByAlex

a guest
Jul 24th, 2014
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. function felling()
  2.     turtle.dig()
  3.     turtle.forward()
  4.     while turtle.detectUp() do
  5.         turtle.digUp()
  6.         turtle.up()
  7.     end
  8.     while turtle.detectDown() == false do
  9.         turtle.down()
  10.     end
  11.     turtle.back()
  12.     planting()
  13. end
  14.  
  15. function planting()
  16.     turtle.select(1)
  17.     turtle.place()
  18.     while turtle.compare() do
  19.         turtle.select(2)
  20.         turtle.place()
  21.         turtle.select(1)
  22.     end
  23.     felling()
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement