DaBananaboat

[FTB] Itemdumper

Mar 31st, 2013
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. dumpedItems = 0
  2.  
  3. for i = 1, 16 do
  4.   itemsInSlot = turtle.getItemCount(i)
  5.  
  6.   turtle.select(i)
  7.   turtle.dropDown()
  8.  
  9.   print("Dropped "..itemsInSlot.." items from item slot "..i..".")
  10.  
  11.   dumpedItems + dumpedItems + itemsInSlot
  12. end
  13.  
  14. print("Dropped a total of "..dumpedItems.." items.")
Add Comment
Please, Sign In to add comment