mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Also streamlining the names of certain items like fuel cans, fish, meat with a status indicator behind the name. Fix some wrong description strings. Add blunt hatchet and wet matches.
26 lines
776 B
C++
26 lines
776 B
C++
class ItemToolbox : ItemCore
|
|
{
|
|
scope = 2;
|
|
model = "\dayz_equip\models\toolbox.p3d";
|
|
picture = "\dayz_equip\textures\equip_toolbox_ca.paa";
|
|
displayName = $STR_EQUIP_NAME_TOOLBOX;
|
|
descriptionShort = $STR_EQUIP_DESC_TOOLBOX;
|
|
|
|
class ItemActions
|
|
{
|
|
class RemoveNet
|
|
{
|
|
text= $STR_EQUIP_TOOLBOX_ACTION_1;
|
|
script=";[['DesertCamoNet_DZ','ForestCamoNet_DZ','WinterCamoNet_DZ','DesertLargeCamoNet_DZ','ForestLargeCamoNet_DZ','WinterLargeCamoNet_DZ'],10,'str_epoch_player_8'] call player_removeNearby;";
|
|
};
|
|
};
|
|
};
|
|
|
|
class ItemToolboxBroken : ItemCore
|
|
{
|
|
scope = 2;
|
|
model = "\dayz_equip\models\toolbox.p3d";
|
|
picture = "\dayz_epoch_c\icons\tools\ItemToolboxBroken.paa";
|
|
displayName = $STR_EQUIP_NAME_TOOLBOX_BROKEN;
|
|
descriptionShort = $STR_EQUIP_DESC_TOOLBOX_BROKEN;
|
|
}; |