Advertisement
Plazter

SheeringUPDROP

Jun 5th, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. function sheer()
  2. turtle.attack()
  3. turtle.turnRight()
  4. end
  5.  
  6. function drop()
  7. for i = 1,16 do
  8. if turtle.getItemCount(i) > 0 then
  9. turtle.select(i)
  10. turtle.dropUp()
  11. end
  12. end
  13. end
  14.  
  15. while true do
  16. sheer()
  17. drop()
  18. sleep(15)
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement