Advertisement
RabaGhast

chestTesting

Nov 20th, 2015
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.24 KB | None | 0 0
  1. chest = peripheral.wrap("left")
  2.  
  3. for i = 1,chest.getInventorySize() do
  4.   item =  chest.getStackInSlot(i)
  5.   print(item["name"]..", "..item["display_name"]..", "..item["raw_name"]..", "..item["mod_id"])
  6. end
  7.  
  8. --name display_name raw_name mod_id
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement