Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
chainsaw.c
Go to the documentation of this file.
1class Chainsaw extends Switchable_Base
2{
3 override bool CanPutInCargo( EntityAI parent )
4 {
5 if( !super.CanPutInCargo(parent) ) {return false;}
6 if( !GetCompEM().IsSwitchedOn() )
7 {
8 return true;
9 }
10 return false;
11 }
12
13 override void SetActions()
14 {
15 super.SetActions();
18 }
19}
void AddAction(typename actionName)
void SetActions()
override bool CanPutInCargo(EntityAI parent)