Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
actionminebushbyhand.c
Go to the documentation of this file.
2{
4 {
6 m_CommandUID = DayZPlayerConstants.CMD_ACTIONFB_INTERACT;
7 m_FullBody = true;
8 m_StanceMask = DayZPlayerConstants.STANCEMASK_CROUCH | DayZPlayerConstants.STANCEMASK_ERECT;
9 m_SpecialtyWeight = UASoftSkillsWeight.ROUGH_HIGH;
10 }
11
12 override void CreateConditionComponents()
13 {
16 }
17
18 override bool ActionCondition( PlayerBase player, ActionTarget target, ItemBase item )
19 {
20 if ( GetGame().IsMultiplayer() && GetGame().IsServer() )
21 return true;
22
23 return (super.ActionCondition(player, target, item) && !item);
24 }
25};
int m_CommandUID
Definition actionbase.c:31
int m_StanceMask
Definition actionbase.c:33
float m_SpecialtyWeight
Definition actionbase.c:77
ref CCIBase m_ConditionItem
Definition actionbase.c:64
bool m_FullBody
Definition actionbase.c:61
ref CCTBase m_ConditionTarget
Definition actionbase.c:65
DayZPlayerConstants
defined in C++
Definition dayzplayer.c:602
proto native CGame GetGame()