Add winter camo nettings

Models made by @Helion4
This commit is contained in:
AirwavesMan
2020-10-29 15:54:24 +01:00
parent ad8ca46482
commit 420ad26902
6 changed files with 112 additions and 36 deletions

View File

@@ -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";
};
};
};

View File

@@ -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
{