Advertisement
Erit1566

Small Jungle Tree Miner

Jul 1st, 2014
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.20 KB | None | 0 0
  1. --mine a tree
  2. function digup()
  3.     turtle.digUp()
  4.     turtle.up()
  5. end
  6.  
  7. function down()
  8.     turtle.down()
  9. end
  10.  
  11. turtle.dig()
  12. turtle.forward()
  13. for i = 1, 10 do
  14.     digup()
  15. end
  16. for i = 1, 10 do
  17.     down()
  18. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement