Easy way to get item amount from wooden box?Solved
what is the easest way to get item amount from a wooden box?

StorageContainer box = BaseNetworkable.serverEntities.Find(box1) as StorageContainer;​
Found it int totals = box.inventory.GetAmount(Convert.ToInt32(step), true);
Locked automatically