How to define a list of things in the same chest?
so get the Empty slot
C#:
if (e.Entity.Name == "WoodBox")
{
for(int i = 1; i <= 12; i++)
{
Server.GetServer().Broadcast(e.Entity.Inventory.Items[i].Name);
}
}