mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
* Removing old code Build Sandbag Fence is not longer used since the rightclick action to build a sandbag. * Removing old code Old code "remove tank trap" is not longer used since we have the scroll action for that. * Update Prop_Defs.hpp * Cutting some strings, removing old strings * Update stringtable.xml
21 lines
421 B
C++
21 lines
421 B
C++
class ItemEtool : ItemCore
|
|
{
|
|
scope = public;
|
|
model = "\dayz_equip\models\etool.p3d";
|
|
picture = "\dayz_equip\textures\equip_etool_ca.paa";
|
|
displayName = $STR_EQUIP_NAME_1;
|
|
descriptionShort = $STR_EQUIP_DESC_1;
|
|
|
|
stashsmall = "StashSmall";
|
|
stashmedium = "StashMedium";
|
|
consume = "ItemSandbag";
|
|
|
|
class ItemActions
|
|
{
|
|
/*class Use
|
|
{
|
|
text=$STR_CREATE_STASH;
|
|
script="spawn player_createstash;";
|
|
};*/
|
|
};
|
|
}; |