Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
en5c_bear_colorbase.c
Go to the documentation of this file.
1class Bear_ColorBase extends Container_Base
2{
3 override bool CanPutInCargo( EntityAI parent )
4 {
5 if( !super.CanPutInCargo(parent) ) {return false;}
6 //better use something like super.GetName()
7 if ( parent && (parent.IsKindOf("Bear_ColorBase")) )
8 {
9 return false;
10 }
11
12 return true;
13 }
14}
15
16class Bear_Beige : Bear_ColorBase
17{
18}
19
20class Bear_Dark : Bear_ColorBase
21{
22}
23
24class Bear_Pink : Bear_ColorBase
25{
26}
27
28class Bear_White : Bear_ColorBase
29{
30}
override bool CanPutInCargo(EntityAI parent)