Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgWeapons/Tools/Shovel.hpp
ebaydayz 13a3083bae Remove right click build sandbag action on shovel
Right click action on sandbag is more up to date
2016-11-05 15:32:49 -04:00

32 lines
753 B
C++

class ItemShovel : ItemCore
{
scope = public;
model = "\z\addons\dayz_communityassets\models\shovel.p3d";
picture = "\z\addons\dayz_communityassets\pictures\equip_shovel_ca.paa";
displayName = $STR_EQUIP_NAME_1b;
descriptionShort = $STR_EQUIP_DESC_1b;
stashsmall = "StashSmall";
stashmedium = "StashMedium";
consume = "ItemSandbag";
class ItemActions
{
/*class Use
{
text = $STR_CREATE_STASH;
script = "spawn player_createstash;";
};*/
};
};
class ItemShovelBroken : ItemCore
{
scope = public;
model = "\z\addons\dayz_communityassets\models\shovel.p3d";
picture = "\z\addons\dayz_communityassets\pictures\equip_shovel_ca.paa";
displayName = $STR_EQUIP_NAME_1b_BROKEN;
descriptionShort = $STR_EQUIP_DESC_1b_BROKEN;
};