HarvDad

dump

Apr 16th, 2014
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. -- dump
  2. -- Dump turtle contents directly down
  3. -- Written by HarvDad, April 2014
  4.  
  5. -- Rev 0.1
  6.  
  7. args = {...}
  8. nArgs = #args
  9.  
  10. function dump()
  11. for i=1,16 do
  12. if (turtle.getItemCount(i) > 0) then
  13. turtle.select(i)
  14. turtle.dropDown()
  15. end
  16. end
  17. end
  18.  
  19. -- MAIN PROGRAM
  20.  
  21. dump()
Add Comment
Please, Sign In to add comment