Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
actionfillbottlesnow.c
Go to the documentation of this file.
2{
4 {
6 m_CommandUID = DayZPlayerConstants.CMD_ACTIONFB_FILLING_CONTAINER_SNOW;
7 m_FullBody = true;
8 m_StanceMask = DayZPlayerConstants.STANCEMASK_CROUCH | DayZPlayerConstants.STANCEMASK_ERECT;
9 m_SpecialtyWeight = UASoftSkillsWeight.PRECISE_LOW;
10 m_Text = "#fill";
11
13 }
14
15 override protected int GetActionCommandEx(ActionData actionData)
16 {
17 //skip parents super, can be omitted if parent is split into two actions
18
19 int commandOverride = GetCommandOverride(actionData);
20 if (commandOverride != -1)
21 return commandOverride;
22
23 return GetActionCommand(actionData.m_Player);
24 }
25}
int m_StanceMask
Definition actionbase.c:33
#define LIQUID_SNOW
float m_SpecialtyWeight
Definition actionbase.c:77
string m_Text
Definition actionbase.c:58
bool m_FullBody
Definition actionbase.c:61
int GetActionCommandEx(ActionData actionData)
int GetActionCommand(PlayerBase player)
int GetCommandOverride(ActionData actionData)
DayZPlayerConstants
defined in C++
Definition dayzplayer.c:602