mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
This is a complete re-build of DayZ_SafeObjects. It was necessary to remove all the duplicated entries. DayZ_SafeObjects gets defined by multiple arrays now. This makes it much easier to update. Also every building with gear gets maintained now. Every single buildable epoch building is included within the maintain array and DayZ_SafeObjects.
26 lines
658 B
C++
26 lines
658 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=";[DZE_CamoNets,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;
|
|
}; |