Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function packageDown(amount)
  2. rs.setOutput("back", true)
  3.  
  4. repeat
  5. while turtle.getItemCount() > amount do
  6. turtle.drop(amount)
  7. sleep(0.7)
  8. end
  9. turtle.dropUp()
  10. until turtle.getItemCount() == 0
  11. rs.setOutput("back", false)
  12. end
  13.  
  14. while true do
  15. packageDown(9)
  16. sleep(60)
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement