Beetlebomb New Member Joined Jan 1, 2011 Messages 131 Reaction score 0 Oct 10, 2014 #1 I know we've got a method call for all inventory items, but I need one for the warehouse. Could someone please point me in the right direction? Thanks
I know we've got a method call for all inventory items, but I need one for the warehouse. Could someone please point me in the right direction? Thanks
O Out Active Member Joined Jun 2, 2012 Messages 2,972 Reaction score 13 Oct 10, 2014 #2 Code: foreach (var item in me.getItems()) { if (item.place == ItemPlace.Warehouse) { ..... } }