Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
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
17
18 override bool ActionCondition( PlayerBase player, ActionTarget target, ItemBase item )
19 {
20 if ( g_Game.IsMultiplayer() && g_Game.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
class ActionTargets ActionTarget
bool m_FullBody
Definition actionbase.c:67
ref CCIBase m_ConditionItem
Definition actionbase.c:70
float m_SpecialtyWeight
Definition actionbase.c:83
ref CCTBase m_ConditionTarget
Definition actionbase.c:71
override void CreateConditionComponents()
override bool ActionCondition(PlayerBase player, ActionTarget target, ItemBase item)
const float DEFAULT
DayZGame g_Game
Definition dayzgame.c:3942
DayZPlayerConstants
defined in C++
Definition dayzplayer.c:602