DayZ 1.24
Loading...
Searching...
No Matches
Red9Bttstck.c
Go to the documentation of this file.
1class Red9Bttstck extends Inventory_Base
2{
3 override bool CanPutAsAttachment(EntityAI parent)
4 {
5 if (!super.CanPutAsAttachment(parent)) return false;
6 if (!parent.IsKindOf("PlateCarrierHolster") && !parent.IsKindOf("PlateCarrierComplete") && !parent.IsKindOf("CarrierHolsterSolo") && !parent.IsKindOf("ChestHolster"))
7 return true;
8 return false;
9 }
10}
override bool CanPutAsAttachment(EntityAI parent)
Definition Red9Bttstck.c:3