Dayz Build 1.29.163047, Scripts Rev. 123548
Dayz Code Explorer by Zeroy
Loading...
Searching...
No Matches
shovel.c
Go to the documentation of this file.
1class Shovel extends ItemBase
2{
3 override bool CanMakeGardenplot()
4 {
5 return true;
6 }
7
26
27 override void SetActionAnimOverrides()
28 {
29 OverrideActionAnimation(ActionDigWorms, DayZPlayerConstants.CMD_ACTIONFB_DIGGIN_WORMS, DayZPlayerConstants.STANCEMASK_ERECT);
30 }
31
32 override int GetOnDigWormsAmount()
33 {
34 return 3;
35 }
36}
ActionBuryAshesCB ActionContinuousBaseCB ActionBuryAshes()
ActionDigOutStashCB ActionContinuousBaseCB ActionDigOutStash()
void AddAction(typename actionName)
override bool CanMakeGardenplot()
Definition shovel.c:3
override void SetActionAnimOverrides()
Definition shovel.c:27
override void SetActions()
Definition shovel.c:8
override int GetOnDigWormsAmount()
Definition shovel.c:32
DayZPlayerConstants
defined in C++
Definition dayzplayer.c:602
void OverrideActionAnimation(typename action, int commandUID, int stanceMask=-1, int commandUIDProne=-1)
Definition itembase.c:5271