Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgWeapons/Tools/Toolbox.hpp

22 lines
599 B
C++

class ItemToolbox : ItemCore
{
scope = public;
model = "\dayz_equip\models\toolbox.p3d";
picture = "\dayz_equip\textures\equip_toolbox_ca.paa";
displayName = $STR_EQUIP_NAME_2;
descriptionShort = $STR_EQUIP_DESC_2;
class ItemActions
{
class RemoveNet
{
text="Remove Camo Net";
script=";[['DesertCamoNet_DZ','ForestCamoNet_DZ','DesertLargeCamoNet_DZ','ForestLargeCamoNet_DZ'],5,'str_epoch_player_8'] call player_removeNearby;";
};
class RemoveTankTrap
{
text="Remove Tank Trap";
script=";[['Hedgehog_DZ'],1,'STR_EPOCH_ACTIONS_14'] call player_removeNearby;";
};
};
};