Exemplo n.º 1
0
 public ServerInventory GetPlayerInventoryBySlotAndType(InventoryTypeE type, InventorySlotE slot)
 {
     foreach (var inventory in PlayerInventories)
     {
         if (inventory.Inventory.InventType == type && inventory.Inventory.InventSlot == slot)
         {
             return(inventory.Inventory);
         }
     }
     return(null);
 }
Exemplo n.º 2
0
 public ServerInventory GetPlayerInventoryByType(InventoryTypeE type)
 {
     foreach (var inventory in PlayerInventories)
     {
         if (inventory.Inventory.InventType == type)
         {
             return(inventory.Inventory);
         }
     }
     return(null);
 }