Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
smershvest.c
Go to the documentation of this file.
1class SmershVest extends Vest_Base
2{
3 override void EEItemAttached(EntityAI item, string slot_name)
4 {
5 super.EEItemAttached(item,slot_name);
6
7 if (SmershBag.Cast(item))
8 {
9 ShowSelection("Buttpack");
10 }
11 }
12
13 override void EEItemDetached(EntityAI item, string slot_name)
14 {
15 super.EEItemDetached(item,slot_name);
16
17 if (SmershBag.Cast(item))
18 {
19 HideSelection("Buttpack");
20 }
21 }
22
23};
override void EEItemDetached(EntityAI item, string slot_name)
override void EEItemAttached(EntityAI item, string slot_name)