What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Get All Warehouse Items Method? Can't find it.

Beetlebomb

New Member
Joined
Jan 1, 2011
Messages
131
Reaction score
0
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 :)
 
Code:
foreach (var item in me.getItems())
{
  if (item.place == ItemPlace.Warehouse)
  {
    .....
  }
}
 
Back
Top