Advertisement
programcreator

Turtle: Tree

Jan 27th, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.41 KB | None | 0 0
  1. function fuel()
  2.   if turtle.getFuelLevel() <= 2 then
  3.     turtle.select(16)
  4.     turtle.refuel(1)
  5.     turtle.select(1)
  6.   end
  7. end
  8.  
  9. function up()
  10. while true do
  11.   fuel()
  12.   if turtle.compareUp() then
  13.       turtle.digUp()
  14.       turtle.up()
  15.   else
  16.     break
  17.   end
  18. end
  19. end
  20.  
  21. function down()
  22.   while not turtle.detectDown() do
  23.     turtle.down()
  24.   end
  25. end
  26.  
  27. turtle.dig()
  28. turtle.forward()
  29. up()
  30. down()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement