mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-21 23:50:48 +03:00
Add many new buildable fortifications
Mady by @Victor-the-Cleaner Also change some base building baseclasses to work better with the new upcoming modular_build changes and snapping.
This commit is contained in:
@@ -65,7 +65,7 @@ class advanced_workBench_kit: CA_Magazine
|
||||
};
|
||||
|
||||
// DayZ Mod workbench
|
||||
class ItemWorkBench : CA_Magazine
|
||||
class ItemWorkBench: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
@@ -76,10 +76,10 @@ class ItemWorkBench : CA_Magazine
|
||||
descriptionShort = $STR_BLD_desc_ItemWorkBench;//"A Folded Workbench, required for House Building and Some Crafting"
|
||||
vehicle = "WorkBench";
|
||||
sfx = "tentunpack";
|
||||
|
||||
class ItemActions
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
class Build
|
||||
{
|
||||
text = $STR_BLD_build_ItemWorkBench;//"place WorkBench"
|
||||
script = "; ['ItemWorkBench','Build'] spawn player_buildPlaceables;";
|
||||
@@ -99,7 +99,7 @@ class wood_ramp_kit: CA_Magazine
|
||||
descriptionShort = $STR_EPOCH_WOODENRAMP_DESC;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
@@ -121,7 +121,7 @@ class plot_pole_kit: CA_Magazine
|
||||
descriptionShort = $STR_EPOCH_PLOT_DESC;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
@@ -156,7 +156,7 @@ class metal_panel_kit: CA_Magazine
|
||||
};
|
||||
};
|
||||
|
||||
class ItemCorrugated : CA_Magazine
|
||||
class ItemCorrugated: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
@@ -165,10 +165,10 @@ class ItemCorrugated : CA_Magazine
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_CORRUGATEDFENCE_DESC;
|
||||
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
class Build
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_214;
|
||||
script = "spawn player_build;";
|
||||
@@ -205,11 +205,11 @@ class ItemCorrugated : CA_Magazine
|
||||
};
|
||||
};
|
||||
|
||||
class ItemWire : CA_Magazine
|
||||
class ItemWire: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
type = 256;
|
||||
model = "\dayz_equip\models\Fence_wire_kit.p3d";
|
||||
picture = "\dayz_equip\textures\equip_fencewire_kit_CA.paa";
|
||||
displayName = $STR_EQUIP_NAME_WIRE_FENCE;
|
||||
@@ -226,14 +226,56 @@ class ItemWire : CA_Magazine
|
||||
create = "Fort_RazorWire"; // vanilla uses Wire_cat1
|
||||
byPass = "byPassRoadCheck";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_ACTION_CRAFT_FORT_WIRE;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"fortified_wire_kit",1}};
|
||||
input[] = {{"ItemWire",1},{"ItemTankTrap",2}};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_BARBED_GATE;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"barbed_gate_kit",1}};
|
||||
input[] = {{"ItemWire",1},{"ItemTankTrap",2},{"ItemPole",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemTankTrap : CA_Magazine
|
||||
class fortified_wire_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
type = 256;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_FORT_WIRE;
|
||||
descriptionShort = $STR_EQUIP_DESC_FORT_WIRE;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTION_BUILD_FORT_WIRE;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"fortified_wire_kit"};
|
||||
create = "FortifiedWire_DZ";
|
||||
byPass = "byPassRoadCheck";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemTankTrap: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
model = "\dayz_equip\models\tank_trap_kit.p3d";
|
||||
picture = "\dayz_equip\textures\equip_tanktrap_kit_CA.paa";
|
||||
displayName = $STR_EQUIP_NAME_TANK_TRAP;
|
||||
@@ -250,19 +292,60 @@ class ItemTankTrap : CA_Magazine
|
||||
create = "Hedgehog_DZ";
|
||||
byPass = "byPassRoadCheck";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_ACTION_CRAFT_FORT_WIRE;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"fortified_wire_kit",1}};
|
||||
input[] = {{"ItemTankTrap",2},{"ItemWire",1}};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_BARBED_GATE;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"barbed_gate_kit",1}};
|
||||
input[] = {{"ItemWire",1},{"ItemTankTrap",2},{"ItemPole",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemGenerator : CA_Magazine
|
||||
class barbed_gate_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
type = 256;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_BARBED_GATE;
|
||||
descriptionShort = $STR_EQUIP_DESC_BARBED_GATE;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_BUILD_BARBED_GATE;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"barbed_gate_kit"};
|
||||
create = "BarbedGate_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemGenerator: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
model = "\dayz_equip\models\generator_gear.p3d";
|
||||
picture = "\dayz_equip\textures\equip_generator_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_31;
|
||||
descriptionShort = $STR_EQUIP_DESC_31;
|
||||
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,4 @@
|
||||
class ItemSandbag : CA_Magazine
|
||||
class ItemSandbag: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
@@ -47,10 +47,19 @@ class ItemSandbag : CA_Magazine
|
||||
output[] = {{"BagFenceRound_DZ_kit",1}};
|
||||
input[] = {{"ItemSandbag",1}};
|
||||
};
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_HBF; // "Craft Heavy Bag Fence"
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"ItemSandbagHeavy_kit",1}};
|
||||
input[] = {{"ItemSandbag",2},{"PartWoodPile",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class BagFenceRound_DZ_kit : CA_Magazine
|
||||
class BagFenceRound_DZ_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
@@ -81,7 +90,7 @@ class BagFenceRound_DZ_kit : CA_Magazine
|
||||
};
|
||||
};
|
||||
|
||||
class ItemSandbagLarge : CA_Magazine
|
||||
class ItemSandbagLarge: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
@@ -109,10 +118,19 @@ class ItemSandbagLarge : CA_Magazine
|
||||
output[] = {{"ItemSandbagExLarge",1}};
|
||||
input[] = {{"ItemSandbagLarge",3}};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_WBARRIER5; // "Craft 5x Warfare Barrier"
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"ItemWarfareBarrier5x_kit",1}};
|
||||
input[] = {{"ItemSandbagLarge",5}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemSandbagExLarge : CA_Magazine
|
||||
class ItemSandbagExLarge: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
@@ -126,14 +144,14 @@ class ItemSandbagExLarge : CA_Magazine
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_273_4;
|
||||
text = $STR_EPOCH_PLAYER_273_4; // "Build 3x H-Barrier"
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool"};
|
||||
create = "Land_HBarrier3_DZ";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_273_2;
|
||||
text = $STR_EPOCH_PLAYER_273_2; // "Craft 5x H-Barrier"
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
@@ -143,7 +161,7 @@ class ItemSandbagExLarge : CA_Magazine
|
||||
};
|
||||
};
|
||||
|
||||
class ItemSandbagExLarge5x : CA_Magazine
|
||||
class ItemSandbagExLarge5x: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
@@ -157,11 +175,51 @@ class ItemSandbagExLarge5x : CA_Magazine
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_273_5;
|
||||
text = $STR_EPOCH_PLAYER_273_5; // "Build 5x H-Barrier"
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool"};
|
||||
create = "Land_HBarrier5_DZ";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_HBARRIER5CURVED; // "Craft 5x H-Barrier (Curved)"
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"ItemSandbagExLarge5xCurved",1}};
|
||||
input[] = {{"ItemSandbagExLarge5x",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemSandbagExLarge5xCurved: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_HBARRIER5CURVED;
|
||||
descriptionShort = $STR_EQUIP_DESC_HBARRIER5CURVED;
|
||||
model = "\dayz_equip\models\sandbags.p3d";
|
||||
picture = "\dayz_equip\textures\equip_sandbag_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_HBARRIER5CURVED_2; // "Build 5x H-Barrier (Curved)"
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool"};
|
||||
create = "Land_HBarrier5Curved_DZ";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_273_2; // "Craft 5x H-Barrier"
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"ItemSandbagExLarge5x",1}};
|
||||
input[] = {{"ItemSandbagExLarge5xCurved",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -184,5 +242,213 @@ class sandbag_nest_kit: CA_Magazine
|
||||
require[] = {"ItemEtool","ItemToolbox"};
|
||||
create = "SandNest_DZ";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_LARGENEST; // "Craft Large Sandbag Nest"
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"sandbag_nest_large_kit",1}};
|
||||
input[] = {{"sandbag_nest_kit",4},{"ItemSandBagHeavyCorner_kit",4}};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class sandbag_nest_large_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_LARGENEST;
|
||||
descriptionShort = $STR_EQUIP_DESC_LARGENEST;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_LARGENEST_2; // "Build Large Sandbag Nest"
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool","ItemToolbox"};
|
||||
create = "SandNestLarge_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemSandbagHeavy_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_HBF; // "Heavy Bag Fence"
|
||||
descriptionShort = $STR_EQUIP_DESC_HBF;
|
||||
model = "\dayz_equip\models\sandbags.p3d";
|
||||
picture = "\dayz_equip\textures\equip_sandbag_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class build
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool","ItemToolbox"};
|
||||
create = "HeavyBagFence_DZ";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_HBF_CORNER; // "Craft Heavy Bag Fence (Corner)"
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"ItemSandBagHeavyCorner_kit",1}};
|
||||
input[] = {{"ItemSandbagHeavy_kit",2}};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_HBF_ROUND; // "Craft Heavy Bag Fence (Round)"
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"ItemSandbagHeavyRound_kit",1}};
|
||||
input[] = {{"ItemSandbagHeavy_kit",3}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemSandBagHeavyCorner_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_HBF_CORNER; // "Heavy Bag Fence (Corner)"
|
||||
descriptionShort = $STR_EQUIP_DESC_HBF_CORNER;
|
||||
model = "\dayz_equip\models\sandbags.p3d";
|
||||
picture = "\dayz_equip\textures\equip_sandbag_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class build
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool","ItemToolbox"};
|
||||
create = "HeavyBagFenceCorner_DZ";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_LARGENEST; // "Craft Large Sandbag Nest"
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"sandbag_nest_large_kit",1}};
|
||||
input[] = {{"sandbag_nest_kit",4},{"ItemSandBagHeavyCorner_kit",4}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemSandbagHeavyRound_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_HBF_ROUND; // "Heavy Bag Fence (Round)"
|
||||
descriptionShort = $STR_EQUIP_DESC_HBF_ROUND;
|
||||
model = "\dayz_equip\models\sandbags.p3d";
|
||||
picture = "\dayz_equip\textures\equip_sandbag_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class build
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool","ItemToolbox"};
|
||||
create = "HeavyBagFenceRound_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemWarfareBarrier5x_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_WBARRIER5;
|
||||
descriptionShort = $STR_EQUIP_DESC_WBARRIER5;
|
||||
model = "\dayz_equip\models\sandbags.p3d";
|
||||
picture = "\dayz_equip\textures\equip_sandbag_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_WBARRIER5_2; // "Build 5x Warfare Barrier"
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool"};
|
||||
create = "Land_WarfareBarrier5x_DZ";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_WBARRIER10; // "Craft 10x Warfare Barrier"
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"ItemWarfareBarrier10x_kit",1}};
|
||||
input[] = {{"ItemWarfareBarrier5x_kit",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemWarfareBarrier10x_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_WBARRIER10;
|
||||
descriptionShort = $STR_EQUIP_DESC_WBARRIER10;
|
||||
model = "\dayz_equip\models\sandbags.p3d";
|
||||
picture = "\dayz_equip\textures\equip_sandbag_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_WBARRIER10_2; // "Build 10x Warfare Barrier"
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool"};
|
||||
create = "Land_WarfareBarrier10x_DZ";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_WBARRIER10TALL; // "Craft 10x Warfare Barrier (Tall)"
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"ItemWarfareBarrier10xTall_kit",1}};
|
||||
input[] = {{"ItemWarfareBarrier10x_kit",3}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemWarfareBarrier10xTall_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_WBARRIER10TALL;
|
||||
descriptionShort = $STR_EQUIP_DESC_WBARRIER10TALL;
|
||||
model = "\dayz_equip\models\sandbags.p3d";
|
||||
picture = "\dayz_equip\textures\equip_sandbag_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_WBARRIER10TALL_2; // "Build 10x Warfare Barrier (Tall)"
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool"};
|
||||
create = "Land_WarfareBarrier10xTall_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -37,6 +37,33 @@ class ItemStone: CA_Magazine
|
||||
output[] = {{"metalfence_foundation_kit",1}};
|
||||
input[] = {{"ItemStone",8},{"MortarBucket",1},{"ItemRSJ",1}};
|
||||
};
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_CNC_BARRIER;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemEtool"};
|
||||
output[] = {{"concrete_barrier_kit",1}};
|
||||
input[] = {{"CementBag",3},{"ItemStone",2},{"ItemWire",1}};
|
||||
};
|
||||
class Crafting4
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_DRAGONTEETH;
|
||||
script = ";['Crafting4','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemSledge"};
|
||||
output[] = {{"dragonteeth_kit",1}};
|
||||
input[] = {{"concrete_wall_kit",1},{"ItemStone",6},{"CementBag",4}};
|
||||
};
|
||||
class Crafting5
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_DRAGONTEETH_BIG;
|
||||
script = ";['Crafting5','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemSledge"};
|
||||
output[] = {{"dragonteeth_big_kit",1}};
|
||||
input[] = {{"dragonteeth_kit",1},{"ItemStone",6},{"CementBag",4}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -169,7 +196,7 @@ class CementBag: CA_Magazine
|
||||
displayName = $STR_ITEM_NAME_CEMENT_BAG;
|
||||
descriptionShort = $STR_ITEM_DESC_CEMENT_BAG;
|
||||
picture = "\dayz_epoch_c\icons\equipment\ItemCementBag.paa";
|
||||
model = "\z\addons\dayz_epoch_w\items\cement_bag.p3d";
|
||||
model = "\z\addons\dayz_epoch_w\items\cement_bag.p3d";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
@@ -182,5 +209,50 @@ class CementBag: CA_Magazine
|
||||
output[] = {{"ItemConcreteBlock",1}};
|
||||
input[] = {{"ItemStone",6},{"CementBag",1}};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_CNC_BARRIER;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemEtool"};
|
||||
output[] = {{"concrete_barrier_kit",1}};
|
||||
input[] = {{"CementBag",3},{"ItemStone",2},{"ItemWire",1}};
|
||||
};
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_CONCRETE_WALL;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemSledge"};
|
||||
output[] = {{"concrete_wall_kit",1}};
|
||||
input[] = {{"concrete_barrier_kit",5},{"CementBag",2}};
|
||||
};
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_CONCRETE_PIPE;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemSledge"};
|
||||
output[] = {{"concrete_pipe_kit",1}};
|
||||
input[] = {{"concrete_barrier_kit",6},{"CementBag",2}};
|
||||
};
|
||||
class Crafting4
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_DRAGONTEETH;
|
||||
script = ";['Crafting4','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemSledge"};
|
||||
output[] = {{"dragonteeth_kit",1}};
|
||||
input[] = {{"concrete_wall_kit",1},{"ItemStone",6},{"CementBag",4}};
|
||||
};
|
||||
class Crafting5
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_DRAGONTEETH_BIG;
|
||||
script = ";['Crafting5','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemSledge"};
|
||||
output[] = {{"dragonteeth_big_kit",1}};
|
||||
input[] = {{"dragonteeth_kit",1},{"ItemStone",6},{"CementBag",4}};
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -1,16 +1,16 @@
|
||||
class PartGeneric : CA_Magazine
|
||||
class PartGeneric: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
type = 256;
|
||||
model = "\dayz_equip\models\genericparts.p3d";
|
||||
picture = "\dayz_equip\textures\equip_genericparts_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_SCRAP_METAL;
|
||||
descriptionShort = $STR_EQUIP_DESC_SCRAP_METAL;
|
||||
|
||||
class ItemActions
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_213;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
@@ -19,7 +19,7 @@ class PartGeneric : CA_Magazine
|
||||
output[] = {{"ItemPole",1}};
|
||||
input[] = {{"PartGeneric",2}};
|
||||
};
|
||||
class Crafting1
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_CRAFTING_NAILS;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
@@ -27,8 +27,8 @@ class PartGeneric : CA_Magazine
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"equip_nails",4}};
|
||||
input[] = {{"PartGeneric",2}};
|
||||
};
|
||||
class Crafting2
|
||||
};
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_CRAFTING_CORRUGATEDSHEETS;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
@@ -37,7 +37,7 @@ class PartGeneric : CA_Magazine
|
||||
output[] = {{"ItemMetalSheet",1}};
|
||||
input[] = {{"PartGeneric",3}};
|
||||
};
|
||||
class Crafting3
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_CRAFTING_METALSHEET;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
@@ -45,8 +45,8 @@ class PartGeneric : CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar","ItemSledge"};
|
||||
output[] = {{"equip_metal_sheet",1}};
|
||||
input[] = {{"PartGeneric",2},{"ItemTankTrap",2}};
|
||||
};
|
||||
class Crafting4
|
||||
};
|
||||
class Crafting4
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_METAL_DOORWAY;
|
||||
script = ";['Crafting4','CfgMagazines', _id] spawn player_craftItem;";
|
||||
@@ -54,7 +54,7 @@ class PartGeneric : CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"door_frame_kit",1}};
|
||||
input[] = {{"ItemPole",4},{"ItemTankTrap",4},{"PartGeneric",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -67,7 +67,7 @@ class ItemPole: CA_Magazine
|
||||
model = "\z\addons\dayz_epoch\models\pipe.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_pipe_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_METALPOLE_DESC;
|
||||
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
@@ -97,7 +97,7 @@ class ItemPole: CA_Magazine
|
||||
output[] = {{"metal_panel_kit",1}};
|
||||
input[] = {{"ItemPole",4},{"ItemTankTrap",4}};
|
||||
};
|
||||
class Crafting3
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_METAL_DOORWAY;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
@@ -105,8 +105,8 @@ class ItemPole: CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"door_frame_kit",1}};
|
||||
input[] = {{"ItemPole",4},{"ItemTankTrap",4},{"PartGeneric",2}};
|
||||
};
|
||||
class Crafting4
|
||||
};
|
||||
class Crafting4
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_GLASS_FLOOR_QUARTER;
|
||||
script = ";['Crafting4','CfgMagazines', _id] spawn player_craftItem;";
|
||||
@@ -114,7 +114,7 @@ class ItemPole: CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"glass_floor_quarter_kit",1}};
|
||||
input[] = {{"ItemPole",8},{"PartGlass",4}};
|
||||
};
|
||||
};
|
||||
class Crafting5
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_228_2;
|
||||
@@ -123,7 +123,16 @@ class ItemPole: CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar","ItemSledge"};
|
||||
output[] = {{"metal_floor_quarter_kit",1}};
|
||||
input[] = {{"ItemPole",4},{"equip_metal_sheet",4}};
|
||||
};
|
||||
};
|
||||
class Crafting6
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_BARBED_GATE;
|
||||
script = ";['Crafting6','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"barbed_gate_kit",1}};
|
||||
input[] = {{"ItemWire",1},{"ItemTankTrap",2},{"ItemPole",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -132,13 +141,13 @@ class ItemMetalSheet: CA_Magazine
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemMetalSheet;//"Corrugated Sheet"
|
||||
displayName = $STR_BLD_name_ItemMetalSheet; //"Corrugated Sheet"
|
||||
picture = "\z\addons\dayz_buildings\equip\item_sheetmetal.paa";
|
||||
model = "z\addons\dayz_buildings\models\sheet_metal.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemMetalSheet;//"Metal Sheeting"
|
||||
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_218;
|
||||
@@ -147,22 +156,22 @@ class ItemMetalSheet: CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"ItemCorrugated",1}};
|
||||
input[] = {{"ItemPole",2},{"ItemMetalSheet",2},{"PartWoodLumber",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class equip_metal_sheet : CA_Magazine
|
||||
class equip_metal_sheet: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ITEM_NAME_equip_metal_sheet;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_metal_sheet;
|
||||
model = "\z\addons\dayz_communityassets\models\metal_sheet_clean.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_metal_sheet.paa";
|
||||
type = 256;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_213_1;
|
||||
@@ -171,7 +180,7 @@ class equip_metal_sheet : CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"metal_pillar_kit",2}};
|
||||
input[] = {{"ItemPole",2},{"equip_metal_sheet",4}};
|
||||
};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_228_2;
|
||||
@@ -184,15 +193,28 @@ class equip_metal_sheet : CA_Magazine
|
||||
};
|
||||
};
|
||||
|
||||
class equip_metal_sheet_rusted : CA_Magazine
|
||||
class equip_metal_sheet_rusted: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ITEM_NAME_equip_metal_sheet_rusted;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_metal_sheet_rusted;
|
||||
model = "\z\addons\dayz_communityassets\models\metal_sheet_rusted.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_metal_sheet_rusted.paa";
|
||||
type = 256;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_METAL_SHEET;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop","fire"};
|
||||
requiretools[] = {"ItemToolbox","ItemSledge"};
|
||||
output[] = {{"equip_metal_sheet",1}};
|
||||
input[] = {{"equip_metal_sheet_rusted",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemRSJ: CA_Magazine
|
||||
@@ -204,9 +226,9 @@ class ItemRSJ: CA_Magazine
|
||||
picture = "\z\addons\dayz_buildings\equip\item_rsj.paa";
|
||||
model = "z\addons\dayz_buildings\models\rsj.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemRSJ;//"Steel RSJ Support Beam"
|
||||
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_BRIDGE;
|
||||
@@ -216,44 +238,30 @@ class ItemRSJ: CA_Magazine
|
||||
output[] = {{"metal_drawbridge_kit",1}};
|
||||
input[] = {{"ItemRSJ",6},{"metal_floor_kit",2}};
|
||||
};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_265; // Craft Scrap Metal
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop","fire"};
|
||||
requiretools[] = {"ItemToolbox","ItemSledge"};
|
||||
output[] = {{"PartGeneric",6}};
|
||||
input[] = {{"ItemRSJ",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class equip_1inch_metal_pipe : CA_Magazine
|
||||
class equip_1inch_metal_pipe: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ITEM_NAME_equip_1inch_metal_pipe;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_1inch_metal_pipe;
|
||||
model = "\z\addons\dayz_communityassets\models\1in_pipe.p3d";
|
||||
model = "\z\addons\dayz_communityassets\models\1in_pipe.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_1inch_metal_pipe_ca.paa";
|
||||
type = 256;
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_305;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"ItemScaffoldingKit",1}};
|
||||
input[] = {{"equip_2inch_metal_pipe",4},{"equip_1inch_metal_pipe",2},{"PartWoodLumber",4}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class equip_2inch_metal_pipe : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_2inch_metal_pipe;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_2inch_metal_pipe;
|
||||
model = "\z\addons\dayz_communityassets\models\2in_pipe.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_2inch_metal_pipe.paa";
|
||||
type = 256;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_305;
|
||||
@@ -263,21 +271,45 @@ class equip_2inch_metal_pipe : CA_Magazine
|
||||
output[] = {{"ItemScaffoldingKit",1}};
|
||||
input[] = {{"equip_2inch_metal_pipe",4},{"equip_1inch_metal_pipe",2},{"PartWoodLumber",4}};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class equip_tent_poles : CA_Magazine
|
||||
class equip_2inch_metal_pipe: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ITEM_NAME_equip_2inch_metal_pipe;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_2inch_metal_pipe;
|
||||
model = "\z\addons\dayz_communityassets\models\2in_pipe.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_2inch_metal_pipe.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_305;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"ItemScaffoldingKit",1}};
|
||||
input[] = {{"equip_2inch_metal_pipe",4},{"equip_1inch_metal_pipe",2},{"PartWoodLumber",4}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class equip_tent_poles: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ITEM_NAME_equip_tent_poles;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_tent_poles;
|
||||
model = "z\addons\dayz_communityassets\models\1m_pole_6.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_1m_pole_6_ca.paa";
|
||||
type = 256;
|
||||
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_190;
|
||||
@@ -305,5 +337,5 @@ class equip_tent_poles : CA_Magazine
|
||||
output[] = {{"ItemDomeTent",1}};
|
||||
input[] = {{"ItemCanvas",3},{"equip_tent_poles",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -1,4 +1,4 @@
|
||||
class ItemLog : CA_Magazine
|
||||
class ItemLog: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
@@ -15,7 +15,7 @@ class ItemLog : CA_Magazine
|
||||
text = $STR_ACTIONS_MAKEFIRE;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemMatchbox"};
|
||||
create = "Land_Fire_DZ";
|
||||
create = "Land_Fire_DZ";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
@@ -25,12 +25,12 @@ class ItemLog : CA_Magazine
|
||||
requiretools[] = {"ItemHatchet","ItemToolbox","ItemKnife"};
|
||||
output[] = {{"PartWoodLumber",2}};
|
||||
input[] = {{"ItemLog",1}};
|
||||
};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_BLD_craft_ItemLog;//"Wooden Plank"
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemHatchet","Handsaw_DZE"};
|
||||
output[] = {{"ItemPlank",2}};
|
||||
input[] = {{"ItemLog",1}};
|
||||
@@ -43,7 +43,7 @@ class ItemLog : CA_Magazine
|
||||
requiretools[] = {"ItemHatchet"};
|
||||
output[] = {{"PartWoodPile",4}};
|
||||
input[] = {{"ItemLog",1}};
|
||||
};
|
||||
};
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_256;
|
||||
@@ -52,7 +52,7 @@ class ItemLog : CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","Hammer_DZE","Handsaw_DZE"};
|
||||
output[] = {{"deer_stand_kit",1}};
|
||||
input[] = {{"ItemLog",8},{"ItemPlank",2},{"equip_nails",2}};
|
||||
};
|
||||
};
|
||||
class Crafting4
|
||||
{
|
||||
text = $STR_BLD_name_WoodenGate_Foundation;
|
||||
@@ -61,11 +61,11 @@ class ItemLog : CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","Handsaw_DZE"};
|
||||
output[] = {{"woodfence_gate_foundation_kit",1}};
|
||||
input[] = {{"ItemLog",6}};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemPlank : CA_Magazine
|
||||
class ItemPlank: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
@@ -74,7 +74,7 @@ class ItemPlank : CA_Magazine
|
||||
picture = "\z\addons\dayz_buildings\equip\item_plank.paa";
|
||||
model = "z\addons\dayz_buildings\models\planks.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemPlank;//"Saw Planks"
|
||||
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
@@ -94,7 +94,7 @@ class ItemPlank : CA_Magazine
|
||||
requiretools[] = {"ItemKnife"};
|
||||
output[] = {{"equip_woodensplint",1}};
|
||||
input[] = {{"ItemPlank",1},{"equip_duct_tape",1},{"equip_string",1}};
|
||||
};
|
||||
};
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_255;
|
||||
@@ -103,7 +103,7 @@ class ItemPlank : CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","Handsaw_DZE"};
|
||||
output[] = {{"bulk_empty",1}};
|
||||
input[] = {{"ItemPlank",2},{"PartGeneric",1}};
|
||||
};
|
||||
};
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_260_1;
|
||||
@@ -121,7 +121,7 @@ class ItemPlank : CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","Handsaw_DZE","Hammer_DZE"};
|
||||
output[] = {{"storage_crate_kit",1}};
|
||||
input[] = {{"ItemPlank",6},{"equip_nails",1}};
|
||||
};
|
||||
};
|
||||
class Crafting5
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_CAMO_STORAGE_CRATE;
|
||||
@@ -130,23 +130,50 @@ class ItemPlank : CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","Handsaw_DZE","Hammer_DZE"};
|
||||
output[] = {{"camo_storage_crate_kit",1}};
|
||||
input[] = {{"ItemPlank",2},{"PartWoodLumber",6},{"forest_net_kit",1},{"equip_nails",1}};
|
||||
};
|
||||
};
|
||||
class Crafting6
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_SIMPLE_FOOTBRIDGE;
|
||||
script = ";['Crafting6','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"simple_footbridge_kit",1}};
|
||||
input[] = {{"ItemPlank",3}};
|
||||
};
|
||||
class Crafting7
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_WOODEN_FOOTBRIDGE;
|
||||
script = ";['Crafting7','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","Handsaw_DZE","Hammer_DZE"};
|
||||
output[] = {{"wooden_footbridge_kit",1}};
|
||||
input[] = {{"ItemPlank",3},{"PartWoodLumber",2},{"equip_nails",1}};
|
||||
};
|
||||
class Crafting8
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_WOODEN_PALLET;
|
||||
script = ";['Crafting8','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","Handsaw_DZE","Hammer_DZE"};
|
||||
output[] = {{"equip_wood_pallet",1}};
|
||||
input[] = {{"ItemPlank",7},{"equip_nails",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class PartWoodPile : CA_Magazine
|
||||
class PartWoodPile: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
type = 256;
|
||||
model = "\dayz_equip\models\woodPile.p3d";
|
||||
picture = "\dayz_equip\textures\equip_woodPile_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_WOOD_PILE;
|
||||
descriptionShort = $STR_EQUIP_DESC_WOOD_PILE;
|
||||
|
||||
class ItemActions
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTIONS_MAKEFIRE;
|
||||
script = "spawn player_build;";
|
||||
@@ -170,7 +197,6 @@ class PartWoodPile : CA_Magazine
|
||||
requiretools[] = {"ItemKnife"};
|
||||
output[] = {{"1Rnd_Arrow_Wood",5}};
|
||||
input[] = {{"PartWoodPile",1},{"equip_feathers",2}};
|
||||
|
||||
};
|
||||
class Crafting2
|
||||
{
|
||||
@@ -180,7 +206,6 @@ class PartWoodPile : CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"stick_fence_kit",1}};
|
||||
input[] = {{"PartWoodPile",6}};
|
||||
|
||||
};
|
||||
class Crafting3
|
||||
{
|
||||
@@ -190,7 +215,7 @@ class PartWoodPile : CA_Magazine
|
||||
requiretools[] = {"ItemKnife"};
|
||||
output[] = {{"equip_woodensplint",1}};
|
||||
input[] = {{"PartWoodPile",1},{"equip_duct_tape",1},{"equip_string",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -280,7 +305,7 @@ class PartWoodLumber: CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","Handsaw_DZE","Hammer_DZE"};
|
||||
output[] = {{"ItemWoodPillar",2}};
|
||||
input[] = {{"PartWoodLumber",8},{"equip_nails",1}};
|
||||
};
|
||||
};
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_257;
|
||||
@@ -289,7 +314,6 @@ class PartWoodLumber: CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","Handsaw_DZE","Hammer_DZE"};
|
||||
output[] = {{"ItemWoodStairs",1}};
|
||||
input[] = {{"PartWoodLumber",8},{"equip_nails",2}};
|
||||
|
||||
};
|
||||
class Crafting4
|
||||
{
|
||||
@@ -299,7 +323,6 @@ class PartWoodLumber: CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","Handsaw_DZE","Hammer_DZE"};
|
||||
output[] = {{"ItemWoodLadder",1}};
|
||||
input[] = {{"PartWoodLumber",8},{"equip_nails",2}};
|
||||
|
||||
};
|
||||
class Crafting5
|
||||
{
|
||||
@@ -328,6 +351,15 @@ class PartWoodLumber: CA_Magazine
|
||||
output[] = {{"equip_woodensplint",1}};
|
||||
input[] = {{"PartWoodLumber",1},{"equip_duct_tape",1},{"equip_string",1}};
|
||||
};
|
||||
class Crafting8
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_WOODEN_FOOTBRIDGE;
|
||||
Script = ";['Crafting8','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","Handsaw_DZE","Hammer_DZE"};
|
||||
output[] = {{"wooden_footbridge_kit",1}};
|
||||
input[] = {{"PartWoodLumber",2},{"ItemPlank",3},{"equip_nails",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -396,28 +428,42 @@ class PartWoodPlywood: CA_Magazine
|
||||
requiretools[] = {"ItemToolbox","Handsaw_DZE","Hammer_DZE"};
|
||||
output[] = {{"ItemWoodCrateKit",1}};
|
||||
input[] = {{"PartWoodPlywood",4},{"PartWoodLumber",2},{"equip_nails",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class equip_wood_pallet : CA_Magazine
|
||||
|
||||
class equip_wood_pallet: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ITEM_NAME_equip_wood_pallet;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_wood_pallet;
|
||||
model = "\z\addons\dayz_communityassets\models\wooden_pallet.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_wpallet_ca.paa";
|
||||
type = 256;
|
||||
|
||||
class ItemActions {
|
||||
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_WINDBREAK;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","Handsaw_DZE","Hammer_DZE"};
|
||||
output[] = {{"windbreak_kit",1}};
|
||||
input[] = {{"equip_wood_pallet",2},{"PartWoodLumber",2},{"equip_nails",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class equip_crate : CA_Magazine
|
||||
class equip_crate: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ITEM_NAME_equip_crate;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_crate;
|
||||
model = "\z\addons\dayz_communityassets\models\crate.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_crate.paa";
|
||||
type = 256;
|
||||
};
|
||||
Reference in New Issue
Block a user