mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-23 16:40:50 +03:00
Add winter camo nettings
Models made by @Helion4
This commit is contained in:
@@ -100,3 +100,55 @@ class forest_net_kit: CA_Magazine
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class winter_net_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_WINTERCAMONET;
|
||||
descriptionShort = $STR_EPOCH_CAMONET_DESC;
|
||||
model = "\z\addons\dayz_communityassets\models\packed_net_green.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_packed_net_green_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool","ItemToolbox"};
|
||||
create = "WinterCamoNet_DZ";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_229;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"winter_large_net_kit",1}};
|
||||
input[] = {{"winter_net_kit",3}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class winter_large_net_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_LARGEWINTERCAMONET;
|
||||
descriptionShort = $STR_EPOCH_LARGECAMONET_DESC;
|
||||
model = "\z\addons\dayz_communityassets\models\packed_net_green.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_packed_net_green_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool","ItemToolbox"};
|
||||
create = "WinterLargeCamoNet_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -16,8 +16,6 @@ class ItemTent : CA_Magazine
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "TentStorage";
|
||||
//Bypass collision test
|
||||
bypassCollision = "true";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
@@ -58,8 +56,6 @@ class ItemDomeTent : CA_Magazine
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "DomeTentStorage";
|
||||
//Bypass collision test
|
||||
bypassCollision = "true";
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user