Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgWeapons/Item/ItemToolbox.hpp
2013-11-06 14:02:00 -05:00

22 lines
436 B
C++

class ItemToolbox: ItemCore
{
scope = 2;
displayName = $STR_EQUIP_NAME_2;
model = "\dayz_equip\models\toolbox.p3d";
picture = "\dayz_equip\textures\equip_toolbox_ca.paa";
descriptionShort = $STR_EQUIP_DESC_2;
class ItemActions
{
class RemoveNet
{
text="Remove Camo Net";
script="spawn player_removeNet;";
};
class RemoveTankTrap
{
text="Remove Tank Trap";
script="spawn player_removeTankTrap;";
};
};
};