Dayz Explorer  1.24.157551 (v105080)
Dayz Code Explorer by Zeroy
okzkcap_colorbase.c
Go to the documentation of this file.
2 {
3  override void SetActions()
4  {
5  super.SetActions();
7  }
8 
9  override protected set<int> GetAttachmentExclusionInitSlotValue(int slotId)
10  {
11  set<int> ret = super.GetAttachmentExclusionInitSlotValue(slotId);
12  if (slotId == InventorySlots.HEADGEAR)
13  {
14  ret.Insert(EAttExclusions.EXCLUSION_MASK_0);
15  ret.Insert(EAttExclusions.EXCLUSION_MASK_1);
16  ret.Insert(EAttExclusions.EXCLUSION_MASK_2);
17  ret.Insert(EAttExclusions.EXCLUSION_MASK_3);
18 
19  ret.Insert(EAttExclusions.SHAVING_HEADGEAR_ATT_0);
20  }
21  return ret;
22  }
23 };
24 class OKZKCap_Beige extends OKZKCap_ColorBase {};
25 class OKZKCap_Green extends OKZKCap_ColorBase {};
InventorySlots
provides access to slot configuration
Definition: inventoryslots.c:5
HeadGear_Base
hard helmet base
Definition: baseballcap_colorbase.c:1
OKZKCap_ColorBase
Definition: okzkcap_colorbase.c:24
AddAction
void AddAction(typename actionName)
Definition: advancedcommunication.c:86
SetActions
void SetActions()
Definition: advancedcommunication.c:79
ActionWringClothes
Definition: actionwringclothes.c:12