tuekats

logger

Jun 22nd, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. while true do
  2. local success,table = turtle.inspect()
  3. if success and table["name"]=="minecraft:log" then
  4. for i=1,7 do
  5. turtle.dig()
  6. turtle.digUp()
  7. turtle.up()
  8. end
  9. for i=1,16 do
  10. turtle.select(i)
  11. turtle.dropDown()
  12. end
  13. for i=1,7 do
  14. turtle.digDown()
  15. turtle.down()
  16. end
  17. end
  18. sleep(1)
  19. end
Advertisement
Add Comment
Please, Sign In to add comment