Advertisement
Silent_Samurai

2x2tree

Dec 5th, 2012
744
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.59 KB | None | 0 0
  1. local height = 1
  2.  
  3. function fuel()
  4.     if turtle.getFuelLevel() == 0 then
  5.         turtle.refuel(1)
  6.     end
  7. end
  8.  
  9. turtle.dig()
  10. fuel()
  11. turtle.forward()
  12. while turtle.detectUp() do
  13.     turtle.dig()
  14.     turtle.digUp()
  15.     fuel()
  16.     turtle.up()
  17.     height = height + 1
  18. end
  19. turtle.turnRight()
  20. turtle.dig()
  21. fuel()
  22. turtle.forward()
  23. turtle.turnLeft()
  24. while height > 1 do
  25.     turtle.dig()
  26.     turtle.digDown()
  27.     fuel()
  28.     turtle.down()
  29.     height = height - 1
  30. end
  31. turtle.dig()
  32. fuel()
  33. turtle.back()
  34. turtle.turnLeft()
  35. fuel()
  36. turtle.forward()
  37. turtle.turnRight()
  38. for slot=1,16 do
  39.     turtle.select(slot)
  40.     turtle.dropDown()
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement