Advertisement
mikethechicken

Untitled

May 25th, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. function dropLoot()
  2. turtle.turnLeft()
  3. turtle.select(1)
  4. turtle.drop(1)
  5. turtle.turnRight()
  6. end
  7.  
  8.  
  9.  
  10. while (true) do
  11. turtle.select(1)
  12. turtle.place()
  13. turtle.select(2)
  14. if(turtle.place()) then
  15. while (turtle.getItemCount(1) > 1) do
  16. dropLoot()
  17. end
  18. else
  19. if(turtle.getItemCount(1) > 1) then
  20. dropLoot()
  21. else
  22. turtle.select(1)
  23. turtle.dig()
  24. end
  25. end
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement