Guest User

test6

a guest
Sep 9th, 2015
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.22 KB | None | 0 0
  1. vc = peripheral.wrap("bottom")
  2. chestSize = vc.getInventorySize()
  3.  
  4. for i = 1, chestSize do
  5.   slot = vc.getStackInSlot(i)
  6.   if slot then
  7.     textutils.pagedPrint("true")
  8.   else
  9.     textutils.pagedPrint("false")
  10.   end
  11. end
Advertisement
Add Comment
Please, Sign In to add comment