Advertisement
mikethechicken

Untitled

May 25th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 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. end
  22. if (turtle.getItemCount(2) > 5) then
  23. turtle.select(1)
  24. turtle.dig()
  25. end
  26. end
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement