diff --git a/SQF/dayz_code/Configs/CfgMagazines/DZE/Currency/Briefcase.hpp b/SQF/dayz_code/Configs/CfgMagazines/DZE/Currency/Briefcase.hpp
index e25422397..7bcb011c0 100644
--- a/SQF/dayz_code/Configs/CfgMagazines/DZE/Currency/Briefcase.hpp
+++ b/SQF/dayz_code/Configs/CfgMagazines/DZE/Currency/Briefcase.hpp
@@ -2,14 +2,14 @@ class ItemBriefcase_Base: CA_Magazine {
scope = public;
count = 1;
type = 256;
- displayName = "Briefcase";
+ displayName = $STR_EPOCH_BRIEFCASE;
model = "\z\addons\dayz_epoch\models\briefcase.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_E_CA.paa";
};
// Gold
class ItemBriefcaseEmpty: ItemBriefcase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_E_CA.paa";
- descriptionShort = "Empty Briefcase";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_EMPTY;
weight = 1;
class ItemActions {
class Crafting {
@@ -48,7 +48,7 @@ class ItemBriefcaseEmpty: ItemBriefcase_Base {
};
class ItemBriefcase10oz: ItemBriefcase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_10oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 1 x 10oz Gold Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_1X10OZGOLD;
weight = 1.2;
worth = 1000;
class ItemActions {
@@ -80,7 +80,7 @@ class ItemBriefcase10oz: ItemBriefcase_Base {
};
class ItemBriefcase20oz: ItemBriefcase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_20oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 2 x 10oz Gold Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_2X10OZGOLD;
weight = 1.5;
worth = 2000;
class ItemActions {
@@ -120,7 +120,7 @@ class ItemBriefcase20oz: ItemBriefcase_Base {
};
class ItemBriefcase30oz: ItemBriefcase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_30oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 3 x 10oz Gold Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_3X10OZGOLD;
weight = 1.8;
worth = 3000;
class ItemActions {
@@ -160,7 +160,7 @@ class ItemBriefcase30oz: ItemBriefcase_Base {
};
class ItemBriefcase40oz: ItemBriefcase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_40oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 4 x 10oz Gold Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_4X10OZGOLD;
weight = 2.1;
worth = 4000;
class ItemActions {
@@ -200,7 +200,7 @@ class ItemBriefcase40oz: ItemBriefcase_Base {
};
class ItemBriefcase50oz: ItemBriefcase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_50oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 5 x 10oz Gold Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_5X10OZGOLD;
weight = 2.4;
worth = 5000;
class ItemActions {
@@ -240,7 +240,7 @@ class ItemBriefcase50oz: ItemBriefcase_Base {
};
class ItemBriefcase60oz: ItemBriefcase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_60oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 6 x 10oz Gold Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_6X10OZGOLD;
weight = 2.7;
worth = 6000;
class ItemActions {
@@ -280,7 +280,7 @@ class ItemBriefcase60oz: ItemBriefcase_Base {
};
class ItemBriefcase70oz: ItemBriefcase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_70oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 7 x 10oz Gold Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_7X10OZGOLD;
weight = 2.9;
worth = 7000;
class ItemActions {
@@ -320,7 +320,7 @@ class ItemBriefcase70oz: ItemBriefcase_Base {
};
class ItemBriefcase80oz: ItemBriefcase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_80oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 8 x 10oz Gold Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_8X10OZGOLD;
weight = 3.2;
worth = 8000;
class ItemActions {
@@ -360,7 +360,7 @@ class ItemBriefcase80oz: ItemBriefcase_Base {
};
class ItemBriefcase90oz: ItemBriefcase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_90oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 9 x 10oz Gold Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_9X10OZGOLD;
weight = 3.5;
worth = 9000;
class ItemActions {
@@ -392,7 +392,7 @@ class ItemBriefcase90oz: ItemBriefcase_Base {
};
class ItemBriefcase100oz: ItemBriefcase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_100oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 10 x 10oz Gold Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_10X10OZGOLD;
weight = 3.8;
worth = 10000;
class ItemActions {
@@ -421,7 +421,7 @@ class ItemSilvercase_Base: ItemBriefcase_Base {
};
class ItemBriefcaseS10oz: ItemSilvercase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_10oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 1 x 10oz Silver Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_1X10OZSILVER;
weight = 1.2;
worth = 10;
class ItemActions {
@@ -453,7 +453,7 @@ class ItemBriefcaseS10oz: ItemSilvercase_Base {
};
class ItemBriefcaseS20oz: ItemSilvercase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_20oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 2 x 10oz Silver Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_2X10OZSILVER;
weight = 1.5;
worth = 20;
class ItemActions {
@@ -493,7 +493,7 @@ class ItemBriefcaseS20oz: ItemSilvercase_Base {
};
class ItemBriefcaseS30oz: ItemSilvercase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_30oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 3 x 10oz Silver Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_3X10OZSILVER;
weight = 1.8;
worth = 30;
class ItemActions {
@@ -533,7 +533,7 @@ class ItemBriefcaseS30oz: ItemSilvercase_Base {
};
class ItemBriefcaseS40oz: ItemSilvercase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_40oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 4 x 10oz Silver Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_4X10OZSILVER;
weight = 2.1;
worth = 40;
class ItemActions {
@@ -573,7 +573,7 @@ class ItemBriefcaseS40oz: ItemSilvercase_Base {
};
class ItemBriefcaseS50oz: ItemSilvercase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_50oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 5 x 10oz Silver Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_5X10OZSILVER;
weight = 2.4;
worth = 50;
class ItemActions {
@@ -613,7 +613,7 @@ class ItemBriefcaseS50oz: ItemSilvercase_Base {
};
class ItemBriefcaseS60oz: ItemSilvercase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_60oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 6 x 10oz Silver Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_6X10OZSILVER;
weight = 2.7;
worth = 60;
class ItemActions {
@@ -653,7 +653,7 @@ class ItemBriefcaseS60oz: ItemSilvercase_Base {
};
class ItemBriefcaseS70oz: ItemSilvercase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_70oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 7 x 10oz Silver Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_7X10OZSILVER;
weight = 2.9;
worth = 70;
class ItemActions {
@@ -693,7 +693,7 @@ class ItemBriefcaseS70oz: ItemSilvercase_Base {
};
class ItemBriefcaseS80oz: ItemSilvercase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_80oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 8 x 10oz Silver Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_8X10OZSILVER;
weight = 3.2;
worth = 80;
class ItemActions {
@@ -733,7 +733,7 @@ class ItemBriefcaseS80oz: ItemSilvercase_Base {
};
class ItemBriefcaseS90oz: ItemSilvercase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_90oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 9 x 10oz Silver Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_9X10OZSILVER;
weight = 3.5;
worth = 90;
class ItemActions {
@@ -765,7 +765,7 @@ class ItemBriefcaseS90oz: ItemSilvercase_Base {
};
class ItemBriefcaseS100oz: ItemSilvercase_Base {
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_100oz_CA.paa";
- descriptionShort = "Briefcase (Contains: 10 x 10oz Silver Bar)";
+ descriptionShort = $STR_EPOCH_BRIEFCASE_10X10OZSILVER;
weight = 3.8;
worth = 100;
class ItemActions {
diff --git a/SQF/dayz_code/Configs/CfgMagazines/DZE/ItemWaterbottle.hpp b/SQF/dayz_code/Configs/CfgMagazines/DZE/ItemWaterbottle.hpp
index ce435df5b..b9051bdc2 100644
--- a/SQF/dayz_code/Configs/CfgMagazines/DZE/ItemWaterbottle.hpp
+++ b/SQF/dayz_code/Configs/CfgMagazines/DZE/ItemWaterbottle.hpp
@@ -1,6 +1,6 @@
class ItemWaterbottle1oz : ItemWaterbottle {
- displayName = "Water Bottle (1oz)";
- descriptionShort = "Watter Bottle with 1oz of water";
+ displayName = $STR_EPOCH_WATERBOTTLE1OZ;
+ descriptionShort = $STR_EPOCH_WATERBOTTLE1OZ_DESC;
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle_1oz_ca.paa";
wateroz = 1;
class ItemActions {
@@ -11,8 +11,8 @@ class ItemWaterbottle1oz : ItemWaterbottle {
};
};
class ItemWaterbottle2oz : ItemWaterbottle {
- displayName = "Water Bottle (2oz)";
- descriptionShort = "Watter Bottle with 2oz of water";
+ displayName = $STR_EPOCH_WATERBOTTLE2OZ;
+ descriptionShort = $STR_EPOCH_WATERBOTTLE2OZ_DESC;
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle_2oz_ca.paa";
wateroz = 2;
class ItemActions {
@@ -23,8 +23,8 @@ class ItemWaterbottle2oz : ItemWaterbottle {
};
};
class ItemWaterbottle3oz : ItemWaterbottle {
- displayName = "Water Bottle (3oz)";
- descriptionShort = "Watter Bottle with 3oz of water";
+ displayName = $STR_EPOCH_WATERBOTTLE3OZ;
+ descriptionShort = $STR_EPOCH_WATERBOTTLE3OZ_DESC;
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle_3oz_ca.paa";
wateroz = 3;
class ItemActions {
@@ -35,8 +35,8 @@ class ItemWaterbottle3oz : ItemWaterbottle {
};
};
class ItemWaterbottle4oz : ItemWaterbottle {
- displayName = "Water Bottle (4oz)";
- descriptionShort = "Watter Bottle with 4oz of water";
+ displayName = $STR_EPOCH_WATERBOTTLE4OZ;
+ descriptionShort = $STR_EPOCH_WATERBOTTLE4OZ_DESC;
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle_4oz_ca.paa";
wateroz = 4;
class ItemActions {
@@ -47,8 +47,8 @@ class ItemWaterbottle4oz : ItemWaterbottle {
};
};
class ItemWaterbottle5oz : ItemWaterbottle {
- displayName = "Water Bottle (5oz)";
- descriptionShort = "Watter Bottle with 5oz of water";
+ displayName = $STR_EPOCH_WATERBOTTLE5OZ;
+ descriptionShort = $STR_EPOCH_WATERBOTTLE5OZ_DESC;
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle_5oz_ca.paa";
wateroz = 5;
class ItemActions {
@@ -59,8 +59,8 @@ class ItemWaterbottle5oz : ItemWaterbottle {
};
};
class ItemWaterbottle6oz : ItemWaterbottle {
- displayName = "Water Bottle (6oz)";
- descriptionShort = "Watter Bottle with 6oz of water";
+ displayName = $STR_EPOCH_WATERBOTTLE6OZ;
+ descriptionShort = $STR_EPOCH_WATERBOTTLE6OZ_DESC;
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle_6oz_ca.paa";
wateroz = 6;
class ItemActions {
@@ -71,8 +71,8 @@ class ItemWaterbottle6oz : ItemWaterbottle {
};
};
class ItemWaterbottle7oz : ItemWaterbottle {
- displayName = "Water Bottle (7oz)";
- descriptionShort = "Watter Bottle with 7oz of water";
+ displayName = $STR_EPOCH_WATERBOTTLE7OZ;
+ descriptionShort = $STR_EPOCH_WATERBOTTLE7OZ_DESC;
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle_7oz_ca.paa";
wateroz = 7;
class ItemActions {
@@ -83,8 +83,8 @@ class ItemWaterbottle7oz : ItemWaterbottle {
};
};
class ItemWaterbottle8oz : ItemWaterbottle {
- displayName = "Water Bottle (8oz)";
- descriptionShort = "Watter Bottle with 8oz of water";
+ displayName = $STR_EPOCH_WATERBOTTLE8OZ;
+ descriptionShort = $STR_EPOCH_WATERBOTTLE8OZ_DESC;
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle_8oz_ca.paa";
wateroz = 8;
class ItemActions {
@@ -95,8 +95,8 @@ class ItemWaterbottle8oz : ItemWaterbottle {
};
};
class ItemWaterbottle9oz : ItemWaterbottle {
- displayName = "Water Bottle (9oz)";
- descriptionShort = "Watter Bottle with 9oz of water";
+ displayName = $STR_EPOCH_WATERBOTTLE9OZ;
+ descriptionShort = $STR_EPOCH_WATERBOTTLE9OZ_DESC;
picture = "\z\addons\dayz_epoch\pictures\equip_waterbottle_9oz_ca.paa";
wateroz = 9;
class ItemActions {
diff --git a/SQF/dayz_code/Configs/CfgMagazines/DZE/Misc.hpp b/SQF/dayz_code/Configs/CfgMagazines/DZE/Misc.hpp
index 0b8ec547d..11123f587 100644
--- a/SQF/dayz_code/Configs/CfgMagazines/DZE/Misc.hpp
+++ b/SQF/dayz_code/Configs/CfgMagazines/DZE/Misc.hpp
@@ -87,7 +87,8 @@ class ItemLightBulb: CA_Magazine
model = "\z\addons\dayz_epoch\models\bulb.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_bulb_CA.paa";
descriptionShort = $STR_EPOCH_LIGHTBULB_DESC;
- class ItemActions {
+ class ItemActions
+ {
class Crafting
{
text = $STR_EPOCH_PLAYER_196;
@@ -135,7 +136,8 @@ 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 ItemActions
+ {
class Build {
text = $STR_EPOCH_PLAYER_214;
script = "spawn player_build;";
@@ -180,7 +182,8 @@ 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 ItemActions
+ {
class Crafting
{
text = $STR_EPOCH_PLAYER_218;
@@ -295,7 +298,8 @@ class ItemFuelBarrelEmpty: ItemFuelBarrel
picture = "\z\addons\dayz_epoch\pictures\equip_oildrum_e_CA.paa";
descriptionShort = $STR_EPOCH_EMPTYFUELBARREL_DESC;
fullcan = "ItemFuelBarrel";
- class ItemActions {
+ class ItemActions
+ {
class Crafting
{
text = $STR_EPOCH_PLAYER_276;
@@ -309,24 +313,24 @@ class ItemFuelBarrelEmpty: ItemFuelBarrel
};
class ItemFireBarrel_kit: CA_Magazine
{
- scope = public;
- count = 1;
- type = 256;
- displayName = $STR_EPOCH_FIREBARRELKIT;
- descriptionShort = $STR_EPOCH_FIREBARRELKIT_DESC;
- model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
- picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
- weight = 45;
- class ItemActions
+ scope = public;
+ count = 1;
+ type = 256;
+ displayName = $STR_EPOCH_FIREBARRELKIT;
+ descriptionShort = $STR_EPOCH_FIREBARRELKIT_DESC;
+ model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
+ picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
+ weight = 45;
+ class ItemActions
+ {
+ class Build
{
- class Build
- {
- text = $STR_ACTIONS_BUILD;
- script = "spawn player_build;";
- require[] = {"ItemToolbox"};
- create = "FireBarrel_DZ";
- };
+ text = $STR_ACTIONS_BUILD;
+ script = "spawn player_build;";
+ require[] = {"ItemToolbox"};
+ create = "FireBarrel_DZ";
};
+ };
};
class workbench_kit: CA_Magazine
{
@@ -356,8 +360,8 @@ class wood_ramp_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Wood Ramp";
- descriptionShort = "Wood ramp can be used to get air.";
+ displayName = $STR_EPOCH_WOODRAMP;
+ 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
@@ -376,8 +380,8 @@ class 30m_plot_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "30 Meter Plot";
- descriptionShort = "Plot Pole: A placeable pole that will allow you and your friends to build within a 30m radius. Ownership of plot pole is lost after owners death.";
+ displayName = $STR_EPOCH_30METERPLOT;
+ descriptionShort = $STR_EPOCH_30METERPLOT_DESC;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
class ItemActions
@@ -397,8 +401,8 @@ class metal_panel_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Metal Panel";
- descriptionShort = "Metal Panel: Strong metal wall used for base defence.";
+ displayName = $STR_EPOCH_METALPANEL;
+ descriptionShort = $STR_EPOCH_METALPANEL_DESC;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 50;
@@ -427,8 +431,8 @@ class deer_stand_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Deer Stand";
- descriptionShort = "Deer Stand: can be used as a lookout.";
+ displayName = $STR_EPOCH_DEERSTAND;
+ descriptionShort = $STR_EPOCH_DEERSTAND_DESC;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 25;
@@ -448,8 +452,8 @@ class desert_large_net_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Large Desert Camo Net";
- descriptionShort = "Large Camo Netting: A very large buildable object that can be used to cover objects.";
+ displayName = $STR_EPOCH_LARGEDESERTCAMONET;
+ descriptionShort = $STR_EPOCH_LARGECAMONET_DESC;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 25;
@@ -469,8 +473,8 @@ class forest_large_net_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Large Forest Camo Net";
- descriptionShort = "Large Camo Netting: A very large buildable object that can be used to cover objects.";
+ displayName = $STR_EPOCH_LARGEFORESTCAMONET;
+ descriptionShort = $STR_EPOCH_LARGECAMONET_DESC;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 25;
@@ -490,8 +494,8 @@ class desert_net_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Desert Camo Net";
- descriptionShort = "Camo Netting: A buildable object that can be used to cover objects.";
+ displayName = $STR_EPOCH_DESERTCAMONET;
+ descriptionShort = $STR_EPOCH_CAMONET_DESC;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 25;
@@ -520,8 +524,8 @@ class forest_net_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Forest Camo Net";
- descriptionShort = "Camo Netting: A buildable object that can be used to cover objects.";
+ displayName = $STR_EPOCH_FORESTCAMONET;
+ descriptionShort = $STR_EPOCH_CAMONET_DESC;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 25;
@@ -550,8 +554,8 @@ class fuel_pump_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Fuel Pump";
- descriptionShort = "Fuel Pump";
+ displayName = $STR_EPOCH_FUELPUMP;
+ descriptionShort = $STR_EPOCH_FUELPUMP;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 50;
@@ -571,8 +575,8 @@ class light_pole_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Light Pole";
- descriptionShort = "Light Pole: A buildable object that can be used with a Generator to provide light in times of darkness.";
+ displayName = $STR_EPOCH_LIGHTPOLE;
+ descriptionShort = $STR_EPOCH_LIGHTPOLE_DESC;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 25;
@@ -592,8 +596,8 @@ class stick_fence_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Stick Fence";
- descriptionShort = "Stick Fence: A buildable barrier that can be used to keep zombies out of your camp. They are fairly weak and can be ran over easier.";
+ displayName = $STR_EPOCH_STICKFENCE;
+ descriptionShort = $STR_EPOCH_STICKFENCE_DESC;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 15;
@@ -613,8 +617,8 @@ class wooden_shed_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Nice Wooden Shed";
- descriptionShort = "Nice Wooden Shed: A crafted object that holds a lot of items/weapons/backpacks and has a door that opens and closes.";
+ displayName = $STR_EPOCH_NICEWOODSHED;
+ descriptionShort = $STR_EPOCH_NICEWOODSHED_DESC;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 25;
@@ -634,8 +638,8 @@ class wood_shack_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Wood Shack";
- descriptionShort = "Wood Shack";
+ displayName = $STR_EPOCH_WOODSHACK;
+ descriptionShort = $STR_EPOCH_WOODSHACK;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 25;
@@ -655,8 +659,8 @@ class m240_nest_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "M240 Nest";
- descriptionShort = "M240 Nest";
+ displayName = $STR_EPOCH_M240NEST;
+ descriptionShort = $STR_EPOCH_M240NEST;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 125;
@@ -676,8 +680,8 @@ class sun_shade_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Canvas Sun Shade";
- descriptionShort = "Sun Shade: A buildable object used to keep the sun off your back.";
+ displayName = $STR_EPOCH_CANVASSUNSHADE;
+ descriptionShort = $STR_EPOCH_CANVASSUNSHADE_DESC;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 25;
@@ -697,8 +701,8 @@ class park_bench_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Wood Bench";
- descriptionShort = "Wood Bench";
+ displayName = $STR_EPOCH_WOODBENCH;
+ descriptionShort = $STR_EPOCH_WOODBENCH;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 25;
@@ -718,8 +722,8 @@ class rusty_gate_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Rusty Gate";
- descriptionShort = "Rusty Gate: A buildable object that can be opened and closed.";
+ displayName = $STR_EPOCH_RUSTYGATE;
+ descriptionShort = $STR_EPOCH_RUSTYGATE_DESC;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 25;
@@ -739,8 +743,8 @@ class outhouse_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Outhouse";
- descriptionShort = "Outhouse: A buildable object that you can poop in. Comes pre-stocked with one roll of Toilet Paper.";
+ displayName = $STR_EPOCH_OUTHOUSE;
+ descriptionShort = $STR_EPOCH_OUTHOUSE_DESC;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 25;
@@ -760,8 +764,8 @@ class storage_shed_kit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Storage Shed";
- descriptionShort = "Storage Shed: A large buildable object that is non enterable and holds a lot of items/weapons/backpacks";
+ displayName = $STR_EPOCH_STORAGESHED;
+ descriptionShort = $STR_EPOCH_STORAGESHED_DESC;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 75;
@@ -782,8 +786,8 @@ class ItemScaffoldingKit: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Scaffolding";
- descriptionShort = "";
+ displayName = $STR_EPOCH_SCAFFOLDING;
+ descriptionShort = $STR_EPOCH_SCAFFOLDING;
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
weight = 80;
@@ -810,7 +814,8 @@ class ItemVault: CA_Magazine
descriptionShort = $STR_EPOCH_SAFE_DESC;
class ItemActions
{
- class Build {
+ class Build
+ {
text = $STR_EPOCH_PLAYER_230;
script = "spawn player_build;";
require[] = {"ItemToolbox"};
@@ -823,14 +828,15 @@ class ItemLockbox: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Lockbox";
+ displayName = $STR_EPOCH_LOCKBOX;
model = "\z\addons\dayz_epoch\models\lockbox_mag.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_lockbox_CA.paa";
- descriptionShort = "Semi secure lockbox";
+ descriptionShort = $STR_EPOCH_LOCKBOX_DESC;
weight = 15;
class ItemActions
{
- class Build {
+ class Build
+ {
text = $STR_EPOCH_PLAYER_231;
script = "spawn player_build;";
require[] = {"ItemToolbox"};
@@ -838,18 +844,18 @@ class ItemLockbox: CA_Magazine
};
};
};
-
class PartPlankPack: CA_Magazine
{
scope = public;
count = 1;
type = 256;
- displayName = "Lumber Pack";
+ displayName = $STR_EPOCH_LUMBERPACK;
model = "\z\addons\dayz_epoch\models\plank_pack.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_lumber_pack_CA.paa";
- descriptionShort = "Lumber in a stack";
+ descriptionShort = $STR_EPOCH_LUMBERPACK_DESC;
weight = 6;
- class ItemActions {
+ class ItemActions
+ {
class Crafting
{
text = $STR_EPOCH_PLAYER_251;
@@ -866,12 +872,13 @@ class CinderBlocks: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Cinder Blocks";
+ displayName = $STR_EPOCH_CINDERBLOCKS;
model = "\z\addons\dayz_epoch\models\cinder_stack.p3d";
picture = "\z\addons\dayz_epoch\pictures\epuip_cinder_blocks_CA.paa";
- descriptionShort = "Stack of nine cinder blocks";
+ descriptionShort = $STR_EPOCH_CINDERBLOCKS_DESC;
weight = 100;
- class ItemActions {
+ class ItemActions
+ {
class Crafting
{
text = $STR_EPOCH_PLAYER_252;
@@ -908,10 +915,10 @@ class MortarBucket: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Bucket of Mortar";
+ displayName = $STR_EPOCH_BUCKETOFMORTAR;
model = "\z\addons\dayz_epoch\models\mortar.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_mortar_CA.paa";
- descriptionShort = "Premixed mastic adhesive that will bond to concrete block.";
+ descriptionShort = $STR_EPOCH_BUCKETOFMORTAR_DESC;
weight = 21;
};
class PartPlywoodPack: CA_Magazine
@@ -919,12 +926,13 @@ class PartPlywoodPack: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Plywood Pack";
+ displayName = $STR_EPOCH_PLYWOODPACK;
model = "\z\addons\dayz_epoch\models\plywood_pack.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_plywood_pack_CA.paa";
- descriptionShort = "Plywood in a stack";
+ descriptionShort = $STR_EPOCH_PLYWOODPACK_DESC;
weight = 12;
- class ItemActions {
+ class ItemActions
+ {
class Crafting
{
text = $STR_EPOCH_PLAYER_251;
@@ -942,11 +950,12 @@ class PartWoodLumber: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Lumber";
+ displayName = $STR_EPOCH_LUMBER;
model = "\z\addons\dayz_epoch\models\planks.p3d";
- picture="\z\addons\dayz_epoch\pictures\equip_wood_planks_CA.paa";
- descriptionShort = "Lumber: Used for building many structures and can also be used to make plywood.";
- class ItemActions {
+ picture= "\z\addons\dayz_epoch\pictures\equip_wood_planks_CA.paa";
+ descriptionShort = $STR_EPOCH_LUMBER_DESC;
+ class ItemActions
+ {
class Crafting
{
text = $STR_EPOCH_PLAYER_254;
@@ -977,7 +986,6 @@ class PartWoodLumber: CA_Magazine
input[] = {{"PartWoodLumber",8},{"PartWoodPile",2}};
};
-
class Crafting3
{
text = $STR_EPOCH_PLAYER_257;
@@ -999,22 +1007,22 @@ class PartWoodLumber: CA_Magazine
};
class Crafting5
- {
- text = $STR_EPOCH_PLAYER_259;
- Script = ";['Crafting5','CfgMagazines', _id] spawn player_craftItem; r_action_count = r_action_count + 1;";
- neednearby[] = {"sawmill"};
- requiretools[] = {"ItemToolbox"};
- output[] = {{"PartPlankPack",1}};
- input[] = {{"PartWoodLumber",3}};
- };
- class Crafting6
- {
- text = $STR_EPOCH_PLAYER_277;
- Script = ";['Crafting6','CfgMagazines', _id] spawn player_craftItem; r_action_count = r_action_count + 1;";
- neednearby[] = {"workshop"};
- requiretools[] = {"ItemToolbox"};
- output[] = {{"ItemGunRackKit",1}};
- input[] = {{"PartWoodLumber",6}};
+ {
+ text = $STR_EPOCH_PLAYER_259;
+ Script = ";['Crafting5','CfgMagazines', _id] spawn player_craftItem; r_action_count = r_action_count + 1;";
+ neednearby[] = {"sawmill"};
+ requiretools[] = {"ItemToolbox"};
+ output[] = {{"PartPlankPack",1}};
+ input[] = {{"PartWoodLumber",3}};
+ };
+ class Crafting6
+ {
+ text = $STR_EPOCH_PLAYER_277;
+ Script = ";['Crafting6','CfgMagazines', _id] spawn player_craftItem; r_action_count = r_action_count + 1;";
+ neednearby[] = {"workshop"};
+ requiretools[] = {"ItemToolbox"};
+ output[] = {{"ItemGunRackKit",1}};
+ input[] = {{"PartWoodLumber",6}};
};
class Crafting7
{
@@ -1032,11 +1040,12 @@ class PartWoodPlywood: CA_Magazine
scope = public;
count = 1;
type = 256;
- displayName = "Plywood";
+ displayName = $STR_EPOCH_PLYWOOD;
model = "\z\addons\dayz_epoch\models\plywood.p3d";
- picture="\z\addons\dayz_epoch\pictures\equip_plywood_CA.paa";
- descriptionShort = "Plywood: Used for building many structures.";
- class ItemActions {
+ picture= "\z\addons\dayz_epoch\pictures\equip_plywood_CA.paa";
+ descriptionShort = $STR_EPOCH_PLYWOOD_DESC;
+ class ItemActions
+ {
class Crafting
{
text = $STR_EPOCH_PLAYER_260;
@@ -1075,28 +1084,29 @@ class PartWoodPlywood: CA_Magazine
input[] = {{"PartWoodPlywood",3},{"PartWoodLumber",3}};
};
class Crafting4
- {
- text = $STR_EPOCH_PLAYER_264;
- Script = ";['Crafting4','CfgMagazines', _id] spawn player_craftItem; r_action_count = r_action_count + 1;";
- neednearby[] = {"sawmill"};
- requiretools[] = {"ItemToolbox"};
- output[] = {{"PartPlywoodPack",1}};
- input[] = {{"PartWoodPlywood",3}};
- };
+ {
+ text = $STR_EPOCH_PLAYER_264;
+ Script = ";['Crafting4','CfgMagazines', _id] spawn player_craftItem; r_action_count = r_action_count + 1;";
+ neednearby[] = {"sawmill"};
+ requiretools[] = {"ItemToolbox"};
+ output[] = {{"PartPlywoodPack",1}};
+ input[] = {{"PartWoodPlywood",3}};
+ };
};
};
-
-class ItemSledgeHead : CA_Magazine {
+class ItemSledgeHead : CA_Magazine
+{
scope = public;
count = 1;
type = 256;
- displayName = "Sledgehammer Head";
+ displayName = $STR_EPOCH_SLEDGEHAMMERHEAD;
model = "\z\addons\dayz_epoch\models\sledge_head.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_sledge_head_ca.paa";
- descriptionShort = "Combine with a handle to make a Sledgehammer";
+ descriptionShort = $STR_EPOCH_SLEDGEHAMMERHEAD_DESC;
weight = 9;
- class ItemActions {
+ class ItemActions
+ {
class Crafting
{
text = $STR_EPOCH_PLAYER_275;
@@ -1109,16 +1119,18 @@ class ItemSledgeHead : CA_Magazine {
};
};
};
-class ItemSledgeHandle : CA_Magazine {
+class ItemSledgeHandle : CA_Magazine
+{
scope = public;
count = 1;
type = 256;
- displayName = "Sledgehammer Handle";
+ displayName = $STR_EPOCH_SLEDGEHAMMERHANDLE;
model = "\z\addons\dayz_epoch\models\sledge_handle.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_sledge_handle_ca.paa";
- descriptionShort = "Combine with a head to make a Sledgehammer";
+ descriptionShort = $STR_EPOCH_SLEDGEHAMMERHANDLE_DESC;
weight = 1;
- class ItemActions {
+ class ItemActions
+ {
class Crafting
{
text = $STR_EPOCH_PLAYER_275;
@@ -1131,8 +1143,8 @@ class ItemSledgeHandle : CA_Magazine {
};
};
};
-
-class ItemKiloHemp : CA_Magazine {
+class ItemKiloHemp : CA_Magazine
+{
scope = public;
count = 1;
displayName = $STR_EPOCH_KILOOFHEMP;
diff --git a/SQF/dayz_code/stringtable.xml b/SQF/dayz_code/stringtable.xml
index 5995407f1..aca06dd46 100644
--- a/SQF/dayz_code/stringtable.xml
+++ b/SQF/dayz_code/stringtable.xml
@@ -14420,12 +14420,12 @@
Read Obituaries
- Wood Ramp
- Wood Ramp
- Wood Ramp
- Wood Ramp
- Wood Ramp
- Wood Ramp
+ Wooden Ramp
+ Wooden Ramp
+ Wooden Ramp
+ Wooden Ramp
+ Wooden Ramp
+ Wooden Ramp
Document used in building a wooden ramp.
@@ -14486,18 +14486,18 @@
Burlap
Burlap
- Burlap
+ Джутовая ткань
Burlap
Burlap
Burlap
- Burlap: A strong cloth like material used for building sandbags
- Burlap: A strong cloth like material used for building sandbags
- Burlap: A strong cloth like material used for building sandbags
- Burlap: A strong cloth like material used for building sandbags
- Burlap: A strong cloth like material used for building sandbags
- Burlap: A strong cloth like material used for building sandbags
+ Burlap: A strong cloth like material used for building sandbags.
+ Burlap: A strong cloth like material used for building sandbags.
+ Джутовая ткань: Крепкая ткань вроде той, что используется в изготовлении мешков для песка.
+ Burlap: A strong cloth like material used for building sandbags.
+ Burlap: A strong cloth like material used for building sandbags.
+ Burlap: A strong cloth like material used for building sandbags.
Light Bulb
@@ -14526,7 +14526,7 @@
Zombie Parts in a Bag: Trade these for Bio Meat at medic traders.
Zombie Parts in a Bag: Trade these for Bio Meat at medic traders.
- Zombie Parts in a Bag: Trade these for Bio Meat at medic traders.
+ Куски плоти в мешке: Обменяйте их на органическое мясо у торговцев медициной.
Zombie Parts in a Bag: Trade these for Bio Meat at medic traders.
Zombie Parts in a Bag: Trade these for Bio Meat at medic traders.
Zombie Parts in a Bag: Trade these for Bio Meat at medic traders.
@@ -14534,7 +14534,7 @@
Combination Lock
Combination Lock
- Combination Lock
+ Кодовый замок
Combination Lock
Combination Lock
Combination Lock
@@ -14542,7 +14542,7 @@
Used to secure structures from unauthorized entry.
Used to secure structures from unauthorized entry.
- Used to secure structures from unauthorized entry.
+ Используется для защиты построек от посторонних.
Used to secure structures from unauthorized entry.
Used to secure structures from unauthorized entry.
Used to secure structures from unauthorized entry.
@@ -14596,20 +14596,20 @@
A Gun Rack for 20 weapons.
- Wood Crate
- Wood Crate
- Wood Crate
- Wood Crate
- Wood Crate
- Wood Crate
+ Wooden Crate
+ Wooden Crate
+ Деревянный ящик
+ Wooden Crate
+ Wooden Crate
+ Wooden Crate
- A wood crate that holds a lot of items.
- A wood crate that holds a lot of items.
- A wood crate that holds a lot of items.
- A wood crate that holds a lot of items.
- A wood crate that holds a lot of items.
- A wood crate that holds a lot of items.
+ A wooden crate that holds a lot of items.
+ A wooden crate that holds a lot of items.
+ Деревянный ящик, которой может вмещать много вещей.
+ A wooden crate that holds a lot of items.
+ A wooden crate that holds a lot of items.
+ A wooden crate that holds a lot of items.
Oil Barrel
@@ -14691,5 +14691,725 @@
Workbench: Used to craft.
Workbench: Used to craft.
+
+ Wooden ramp can be used to get air.
+ Wooden ramp can be used to get air.
+ Wooden ramp can be used to get air.
+ Wooden ramp can be used to get air.
+ Wooden ramp can be used to get air.
+ Wooden ramp can be used to get air.
+
+
+ 30 Meter Plot
+ 30 Meter Plot
+ 30 Meter Plot
+ 30 Meter Plot
+ 30 Meter Plot
+ 30 Meter Plot
+
+
+ Plot Pole: A placeable pole that will allow you and your friends to build within a 30m radius. Ownership of plot pole is lost after owners death.
+ Plot Pole: A placeable pole that will allow you and your friends to build within a 30m radius. Ownership of plot pole is lost after owners death.
+ Plot Pole: A placeable pole that will allow you and your friends to build within a 30m radius. Ownership of plot pole is lost after owners death.
+ Plot Pole: A placeable pole that will allow you and your friends to build within a 30m radius. Ownership of plot pole is lost after owners death.
+ Plot Pole: A placeable pole that will allow you and your friends to build within a 30m radius. Ownership of plot pole is lost after owners death.
+ Plot Pole: A placeable pole that will allow you and your friends to build within a 30m radius. Ownership of plot pole is lost after owners death.
+
+
+ Metal Panel
+ Metal Panel
+ Metal Panel
+ Metal Panel
+ Metal Panel
+ Metal Panel
+
+
+ Metal Panel: Strong metal wall used for base defence.
+ Metal Panel: Strong metal wall used for base defence.
+ Metal Panel: Strong metal wall used for base defence.
+ Metal Panel: Strong metal wall used for base defence.
+ Metal Panel: Strong metal wall used for base defence.
+ Metal Panel: Strong metal wall used for base defence.
+
+
+ Deer Stand
+ Deer Stand
+ Deer Stand
+ Deer Stand
+ Deer Stand
+ Deer Stand
+
+
+ Deer Stand: can be used as a lookout.
+ Deer Stand: can be used as a lookout.
+ Deer Stand: can be used as a lookout.
+ Deer Stand: can be used as a lookout.
+ Deer Stand: can be used as a lookout.
+ Deer Stand: can be used as a lookout.
+
+
+ Large Desert Camo Net
+ Large Desert Camo Net
+ Large Desert Camo Net
+ Large Desert Camo Net
+ Large Desert Camo Net
+ Large Desert Camo Net
+
+
+ Large Forest Camo Net
+ Large Forest Camo Net
+ Large Forest Camo Net
+ Large Forest Camo Net
+ Large Forest Camo Net
+ Large Forest Camo Net
+
+
+ Large Camo Netting: A very large buildable object that can be used to cover objects.
+ Large Camo Netting: A very large buildable object that can be used to cover objects.
+ Large Camo Netting: A very large buildable object that can be used to cover objects.
+ Large Camo Netting: A very large buildable object that can be used to cover objects.
+ Large Camo Netting: A very large buildable object that can be used to cover objects.
+ Large Camo Netting: A very large buildable object that can be used to cover objects.
+
+
+ Desert Camo Net
+ Desert Camo Net
+ Desert Camo Net
+ Desert Camo Net
+ Desert Camo Net
+ Desert Camo Net
+
+
+ Forest Camo Net
+ Forest Camo Net
+ Forest Camo Net
+ Forest Camo Net
+ Forest Camo Net
+ Forest Camo Net
+
+
+ Camo Netting: A buildable object that can be used to cover objects.
+ Camo Netting: A buildable object that can be used to cover objects.
+ Camo Netting: A buildable object that can be used to cover objects.
+ Camo Netting: A buildable object that can be used to cover objects.
+ Camo Netting: A buildable object that can be used to cover objects.
+ Camo Netting: A buildable object that can be used to cover objects.
+
+
+ Fuel Pump
+ Fuel Pump
+ Fuel Pump
+ Fuel Pump
+ Fuel Pump
+ Fuel Pump
+
+
+ Light Pole
+ Light Pole
+ Light Pole
+ Light Pole
+ Light Pole
+ Light Pole
+
+
+ Light Pole: A buildable object that can be used with a Generator to provide light in times of darkness.
+ Light Pole: A buildable object that can be used with a Generator to provide light in times of darkness.
+ Light Pole: A buildable object that can be used with a Generator to provide light in times of darkness.
+ Light Pole: A buildable object that can be used with a Generator to provide light in times of darkness.
+ Light Pole: A buildable object that can be used with a Generator to provide light in times of darkness.
+ Light Pole: A buildable object that can be used with a Generator to provide light in times of darkness.
+
+
+ Stick Fence
+ Stick Fence
+ Stick Fence
+ Stick Fence
+ Stick Fence
+ Stick Fence
+
+
+ Stick Fence: A buildable barrier that can be used to keep zombies out of your camp. They are fairly weak and can be ran over easier.
+ Stick Fence: A buildable barrier that can be used to keep zombies out of your camp. They are fairly weak and can be ran over easier.
+ Stick Fence: A buildable barrier that can be used to keep zombies out of your camp. They are fairly weak and can be ran over easier.
+ Stick Fence: A buildable barrier that can be used to keep zombies out of your camp. They are fairly weak and can be ran over easier.
+ Stick Fence: A buildable barrier that can be used to keep zombies out of your camp. They are fairly weak and can be ran over easier.
+ Stick Fence: A buildable barrier that can be used to keep zombies out of your camp. They are fairly weak and can be ran over easier.
+
+
+ Nice Wooden Shed
+ Nice Wooden Shed
+ Nice Wooden Shed
+ Nice Wooden Shed
+ Nice Wooden Shed
+ Nice Wooden Shed
+
+
+ Nice Wooden Shed: A crafted object that holds a lot of items/weapons/backpacks and has a door that opens and closes.
+ Nice Wooden Shed: A crafted object that holds a lot of items/weapons/backpacks and has a door that opens and closes.
+ Nice Wooden Shed: A crafted object that holds a lot of items/weapons/backpacks and has a door that opens and closes.
+ Nice Wooden Shed: A crafted object that holds a lot of items/weapons/backpacks and has a door that opens and closes.
+ Nice Wooden Shed: A crafted object that holds a lot of items/weapons/backpacks and has a door that opens and closes.
+ Nice Wooden Shed: A crafted object that holds a lot of items/weapons/backpacks and has a door that opens and closes.
+
+
+ Wooden Shack
+ Wooden Shack
+ Wooden Shack
+ Wooden Shack
+ Wooden Shack
+ Wooden Shack
+
+
+ M240 Nest
+ M240 Nest
+ M240 Nest
+ M240 Nest
+ M240 Nest
+ M240 Nest
+
+
+ Canvas Sun Shade
+ Canvas Sun Shade
+ Canvas Sun Shade
+ Canvas Sun Shade
+ Canvas Sun Shade
+ Canvas Sun Shade
+
+
+ Sun Shade: A buildable object used to keep the sun off your back.
+ Sun Shade: A buildable object used to keep the sun off your back.
+ Sun Shade: A buildable object used to keep the sun off your back.
+ Sun Shade: A buildable object used to keep the sun off your back.
+ Sun Shade: A buildable object used to keep the sun off your back.
+ Sun Shade: A buildable object used to keep the sun off your back.
+
+
+ Wooden Bench
+ Wooden Bench
+ Wooden Bench
+ Wooden Bench
+ Wooden Bench
+ Wooden Bench
+
+
+ Rusty Gate
+ Rusty Gate
+ Rusty Gate
+ Rusty Gate
+ Rusty Gate
+ Rusty Gate
+
+
+ Rusty Gate: A buildable object that can be opened and closed.
+ Rusty Gate: A buildable object that can be opened and closed.
+ Rusty Gate: A buildable object that can be opened and closed.
+ Rusty Gate: A buildable object that can be opened and closed.
+ Rusty Gate: A buildable object that can be opened and closed.
+ Rusty Gate: A buildable object that can be opened and closed.
+
+
+ Outhouse
+ Outhouse
+ Outhouse
+ Outhouse
+ Outhouse
+ Outhouse
+
+
+ Outhouse: A buildable object that you can poop in. Comes pre-stocked with one roll of Toilet Paper.
+ Outhouse: A buildable object that you can poop in. Comes pre-stocked with one roll of Toilet Paper.
+ Outhouse: A buildable object that you can poop in. Comes pre-stocked with one roll of Toilet Paper.
+ Outhouse: A buildable object that you can poop in. Comes pre-stocked with one roll of Toilet Paper.
+ Outhouse: A buildable object that you can poop in. Comes pre-stocked with one roll of Toilet Paper.
+ Outhouse: A buildable object that you can poop in. Comes pre-stocked with one roll of Toilet Paper.
+
+
+ Storage Shed
+ Storage Shed
+ Storage Shed
+ Storage Shed
+ Storage Shed
+ Storage Shed
+
+
+ Storage Shed: A large buildable object that is non enterable and holds a lot of items/weapons/backpacks.
+ Storage Shed: A large buildable object that is non enterable and holds a lot of items/weapons/backpacks.
+ Storage Shed: A large buildable object that is non enterable and holds a lot of items/weapons/backpacks.
+ Storage Shed: A large buildable object that is non enterable and holds a lot of items/weapons/backpacks.
+ Storage Shed: A large buildable object that is non enterable and holds a lot of items/weapons/backpacks.
+ Storage Shed: A large buildable object that is non enterable and holds a lot of items/weapons/backpacks.
+
+
+ Scaffolding
+ Scaffolding
+ Строительные леса
+ Scaffolding
+ Scaffolding
+ Scaffolding
+
+
+ Lockbox
+ Lockbox
+ Запираемый ящик
+ Lockbox
+ Lockbox
+ Lockbox
+
+
+ Semi secure lockbox.
+ Semi secure lockbox.
+ Безопасное хранилище.
+ Semi secure lockbox.
+ Semi secure lockbox.
+ Semi secure lockbox.
+
+
+ Lumber Pack
+ Lumber Pack
+ Упаковка пиломатериалов
+ Lumber Pack
+ Lumber Pack
+ Lumber Pack
+
+
+ Lumber in a stack.
+ Lumber in a stack.
+ Упакованные пиломатериалы.
+ Lumber in a stack.
+ Lumber in a stack.
+ Lumber in a stack.
+
+
+ Cinder Blocks
+ Cinder Blocks
+ Шлакоблоки
+ Cinder Blocks
+ Cinder Blocks
+ Cinder Blocks
+
+
+ Stack of nine cinder blocks.
+ Stack of nine cinder blocks.
+ Упаковка из девяти шлакоблоков.
+ Stack of nine cinder blocks.
+ Stack of nine cinder blocks.
+ Stack of nine cinder blocks.
+
+
+ Bucket of Mortar
+ Bucket of Mortar
+ Ведро строй. раствора
+ Bucket of Mortar
+ Bucket of Mortar
+ Bucket of Mortar
+
+
+ Premixed mastic adhesive that will bond to concrete block.
+ Premixed mastic adhesive that will bond to concrete block.
+ Строительный раствор, которой скрепит кирпичи между собой.
+ Premixed mastic adhesive that will bond to concrete block.
+ Premixed mastic adhesive that will bond to concrete block.
+ Premixed mastic adhesive that will bond to concrete block.
+
+
+ Plywood Pack
+ Plywood Pack
+ Упаковка фанеры
+ Plywood Pack
+ Plywood Pack
+ Plywood Pack
+
+
+ Plywood in a stack.
+ Plywood in a stack.
+ Упакованная фанера.
+ Plywood in a stack.
+ Plywood in a stack.
+ Plywood in a stack.
+
+
+ Lumber
+ Lumber
+ Пиломатериалы
+ Lumber
+ Lumber
+ Lumber
+
+
+ Lumber: Used for building many structures and can also be used to make plywood.
+ Lumber: Used for building many structures and can also be used to make plywood.
+ Пиломатериалы: Используются для строительства и могут быть использованы для получения фанеры.
+ Lumber: Used for building many structures and can also be used to make plywood.
+ Lumber: Used for building many structures and can also be used to make plywood.
+ Lumber: Used for building many structures and can also be used to make plywood.
+
+
+ Plywood
+ Plywood
+ Фанера
+ Plywood
+ Plywood
+ Plywood
+
+
+ Plywood: Used for building many structures.
+ Plywood: Used for building many structures.
+ Фанера: Используется в строительстве.
+ Plywood: Used for building many structures.
+ Plywood: Used for building many structures.
+ Plywood: Used for building many structures.
+
+
+ Sledgehammer Head
+ Sledgehammer Head
+ Боёк кувалды
+ Sledgehammer Head
+ Sledgehammer Head
+ Sledgehammer Head
+
+
+ Combine with a handle to make a Sledgehammer.
+ Combine with a handle to make a Sledgehammer.
+ Объедините с ручкой, чтобы получить кувалду.
+ Combine with a handle to make a Sledgehammer.
+ Combine with a handle to make a Sledgehammer.
+ Combine with a handle to make a Sledgehammer.
+
+
+ Sledgehammer Handle
+ Sledgehammer Handle
+ Ручка кувалды
+ Sledgehammer Handle
+ Sledgehammer Handle
+ Sledgehammer Handle
+
+
+ Combine with a head to make a Sledgehammer.
+ Combine with a head to make a Sledgehammer.
+ Объедините с бойком, чтобы получить кувалду.
+ Combine with a head to make a Sledgehammer.
+ Combine with a head to make a Sledgehammer.
+ Combine with a head to make a Sledgehammer.
+
+
+ Water Bottle (1oz)
+ Water Bottle (1oz)
+ Бутылка воды (1 унция)
+ Water Bottle (1oz)
+ Water Bottle (1oz)
+ Water Bottle (1oz)
+
+
+ Water Bottle with 1oz of water.
+ Water Bottle with 1oz of water.
+ Бутылка с 1 унцией воды.
+ Water Bottle with 1oz of water.
+ Water Bottle with 1oz of water.
+ Water Bottle with 1oz of water.
+
+
+ Water Bottle (2oz)
+ Water Bottle (2oz)
+ Бутылка воды (2 унции)
+ Water Bottle (2oz)
+ Water Bottle (2oz)
+ Water Bottle (2oz)
+
+
+ Water Bottle with 2oz of water.
+ Water Bottle with 2oz of water.
+ Бутылка с 2 унциями воды.
+ Water Bottle with 2oz of water.
+ Water Bottle with 2oz of water.
+ Water Bottle with 2oz of water.
+
+
+ Water Bottle (3oz)
+ Water Bottle (3oz)
+ Бутылка воды (3 унции)
+ Water Bottle (3oz)
+ Water Bottle (3oz)
+ Water Bottle (3oz)
+
+
+ Water Bottle with 3oz of water.
+ Water Bottle with 3oz of water.
+ Бутылка с 3 унциями воды.
+ Water Bottle with 3oz of water.
+ Water Bottle with 3oz of water.
+ Water Bottle with 3oz of water.
+
+
+ Water Bottle (4oz)
+ Water Bottle (4oz)
+ Бутылка воды (4 унции)
+ Water Bottle (4oz)
+ Water Bottle (4oz)
+ Water Bottle (4oz)
+
+
+ Water Bottle with 4oz of water.
+ Water Bottle with 4oz of water.
+ Бутылка с 4 унциями воды.
+ Water Bottle with 4oz of water.
+ Water Bottle with 4oz of water.
+ Water Bottle with 4oz of water.
+
+
+ Water Bottle (5oz)
+ Water Bottle (5oz)
+ Бутылка воды (5 унций)
+ Water Bottle (5oz)
+ Water Bottle (5oz)
+ Water Bottle (5oz)
+
+
+ Water Bottle with 5oz of water.
+ Water Bottle with 5oz of water.
+ Бутылка с 5 унциями воды.
+ Water Bottle with 5oz of water.
+ Water Bottle with 5oz of water.
+ Water Bottle with 5oz of water.
+
+
+ Water Bottle (6oz)
+ Water Bottle (6oz)
+ Бутылка воды (6 унций)
+ Water Bottle (6oz)
+ Water Bottle (6oz)
+ Water Bottle (6oz)
+
+
+ Water Bottle with 6oz of water.
+ Water Bottle with 6oz of water.
+ Бутылка с 6 унциями воды.
+ Water Bottle with 6oz of water.
+ Water Bottle with 6oz of water.
+ Water Bottle with 6oz of water.
+
+
+ Water Bottle (7oz)
+ Water Bottle (7oz)
+ Бутылка воды (7 унций)
+ Water Bottle (7oz)
+ Water Bottle (7oz)
+ Water Bottle (7oz)
+
+
+ Water Bottle with 7oz of water.
+ Water Bottle with 7oz of water.
+ Бутылка с 7 унциями воды.
+ Water Bottle with 7oz of water.
+ Water Bottle with 7oz of water.
+ Water Bottle with 7oz of water.
+
+
+ Water Bottle (8oz)
+ Water Bottle (8oz)
+ Бутылка воды (8 унций)
+ Water Bottle (8oz)
+ Water Bottle (8oz)
+ Water Bottle (8oz)
+
+
+ Water Bottle with 8oz of water.
+ Water Bottle with 8oz of water.
+ Бутылка с 8 унциями воды.
+ Water Bottle with 8oz of water.
+ Water Bottle with 8oz of water.
+ Water Bottle with 8oz of water.
+
+
+ Water Bottle (9oz)
+ Water Bottle (9oz)
+ Бутылка воды (9 унций)
+ Water Bottle (9oz)
+ Water Bottle (9oz)
+ Water Bottle (9oz)
+
+
+ Water Bottle with 9oz of water.
+ Water Bottle with 9oz of water.
+ Бутылка с 9 унциями воды.
+ Water Bottle with 9oz of water.
+ Water Bottle with 9oz of water.
+ Water Bottle with 9oz of water.
+
+
+ Briefcase
+ Briefcase
+ Чемоданчик
+ Briefcase
+ Briefcase
+ Briefcase
+
+
+ Empty Briefcase
+ Empty Briefcase
+ Пустой чемоданчик
+ Empty Briefcase
+ Empty Briefcase
+ Empty Briefcase
+
+
+ Briefcase (Contains: 1 x 10oz Gold Bar)
+ Briefcase (Contains: 1 x 10oz Gold Bar)
+ Чемоданчик (Содержит: 1 золотой слиток (10 унций))
+ Briefcase (Contains: 1 x 10oz Gold Bar)
+ Briefcase (Contains: 1 x 10oz Gold Bar)
+ Briefcase (Contains: 1 x 10oz Gold Bar)
+
+
+ Briefcase (Contains: 2 x 10oz Gold Bar)
+ Briefcase (Contains: 2 x 10oz Gold Bar)
+ Чемоданчик (Содержит: 2 золотых слитка по 10 унций)
+ Briefcase (Contains: 2 x 10oz Gold Bar)
+ Briefcase (Contains: 2 x 10oz Gold Bar)
+ Briefcase (Contains: 2 x 10oz Gold Bar)
+
+
+ Briefcase (Contains: 3 x 10oz Gold Bar)
+ Briefcase (Contains: 3 x 10oz Gold Bar)
+ Чемоданчик (Содержит: 3 золотых слитка по 10 унций)
+ Briefcase (Contains: 3 x 10oz Gold Bar)
+ Briefcase (Contains: 3 x 10oz Gold Bar)
+ Briefcase (Contains: 3 x 10oz Gold Bar)
+
+
+ Briefcase (Contains: 4 x 10oz Gold Bar)
+ Briefcase (Contains: 4 x 10oz Gold Bar)
+ Чемоданчик (Содержит: 4 золотых слитка по 10 унций)
+ Briefcase (Contains: 4 x 10oz Gold Bar)
+ Briefcase (Contains: 4 x 10oz Gold Bar)
+ Briefcase (Contains: 4 x 10oz Gold Bar)
+
+
+ Briefcase (Contains: 5 x 10oz Gold Bar)
+ Briefcase (Contains: 5 x 10oz Gold Bar)
+ Чемоданчик (Содержит: 5 золотых слитков по 10 унций)
+ Briefcase (Contains: 5 x 10oz Gold Bar)
+ Briefcase (Contains: 5 x 10oz Gold Bar)
+ Briefcase (Contains: 5 x 10oz Gold Bar)
+
+
+ Briefcase (Contains: 6 x 10oz Gold Bar)
+ Briefcase (Contains: 6 x 10oz Gold Bar)
+ Чемоданчик (Содержит: 6 золотых слитков по 10 унций)
+ Briefcase (Contains: 6 x 10oz Gold Bar)
+ Briefcase (Contains: 6 x 10oz Gold Bar)
+ Briefcase (Contains: 6 x 10oz Gold Bar)
+
+
+ Briefcase (Contains: 7 x 10oz Gold Bar)
+ Briefcase (Contains: 7 x 10oz Gold Bar)
+ Чемоданчик (Содержит: 7 золотых слитков по 10 унций)
+ Briefcase (Contains: 7 x 10oz Gold Bar)
+ Briefcase (Contains: 7 x 10oz Gold Bar)
+ Briefcase (Contains: 7 x 10oz Gold Bar)
+
+
+ Briefcase (Contains: 8 x 10oz Gold Bar)
+ Briefcase (Contains: 8 x 10oz Gold Bar)
+ Чемоданчик (Содержит: 8 золотых слитков по 10 унций)
+ Briefcase (Contains: 8 x 10oz Gold Bar)
+ Briefcase (Contains: 8 x 10oz Gold Bar)
+ Briefcase (Contains: 8 x 10oz Gold Bar)
+
+
+ Briefcase (Contains: 9 x 10oz Gold Bar)
+ Briefcase (Contains: 9 x 10oz Gold Bar)
+ Чемоданчик (Содержит: 9 золотых слитков по 10 унций)
+ Briefcase (Contains: 9 x 10oz Gold Bar)
+ Briefcase (Contains: 9 x 10oz Gold Bar)
+ Briefcase (Contains: 9 x 10oz Gold Bar)
+
+
+ Briefcase (Contains: 10 x 10oz Gold Bar)
+ Briefcase (Contains: 10 x 10oz Gold Bar)
+ Чемоданчик (Содержит: 10 золотых слитков по 10 унций)
+ Briefcase (Contains: 10 x 10oz Gold Bar)
+ Briefcase (Contains: 10 x 10oz Gold Bar)
+ Briefcase (Contains: 10 x 10oz Gold Bar)
+
+
+ Briefcase (Contains: 1 x 10oz Silver Bar)
+ Briefcase (Contains: 1 x 10oz Silver Bar)
+ Чемоданчик (Содержит: 1 серебряный слиток (10 унций))
+ Briefcase (Contains: 1 x 10oz Silver Bar)
+ Briefcase (Contains: 1 x 10oz Silver Bar)
+ Briefcase (Contains: 1 x 10oz Silver Bar)
+
+
+ Briefcase (Contains: 2 x 10oz Silver Bar)
+ Briefcase (Contains: 2 x 10oz Silver Bar)
+ Чемоданчик (Содержит: 2 серебряных слитка по 10 унций)
+ Briefcase (Contains: 2 x 10oz Silver Bar)
+ Briefcase (Contains: 2 x 10oz Silver Bar)
+ Briefcase (Contains: 2 x 10oz Silver Bar)
+
+
+ Briefcase (Contains: 3 x 10oz Silver Bar)
+ Briefcase (Contains: 3 x 10oz Silver Bar)
+ Чемоданчик (Содержит: 3 серебряных слитка по 10 унций)
+ Briefcase (Contains: 3 x 10oz Silver Bar)
+ Briefcase (Contains: 3 x 10oz Silver Bar)
+ Briefcase (Contains: 3 x 10oz Silver Bar)
+
+
+ Briefcase (Contains: 4 x 10oz Silver Bar)
+ Briefcase (Contains: 4 x 10oz Silver Bar)
+ Чемоданчик (Содержит: 4 серебряных слитка по 10 унций)
+ Briefcase (Contains: 4 x 10oz Silver Bar)
+ Briefcase (Contains: 4 x 10oz Silver Bar)
+ Briefcase (Contains: 4 x 10oz Silver Bar)
+
+
+ Briefcase (Contains: 5 x 10oz Silver Bar)
+ Briefcase (Contains: 5 x 10oz Silver Bar)
+ Чемоданчик (Содержит: 5 серебряных слитков по 10 унций)
+ Briefcase (Contains: 5 x 10oz Silver Bar)
+ Briefcase (Contains: 5 x 10oz Silver Bar)
+ Briefcase (Contains: 5 x 10oz Silver Bar)
+
+
+ Briefcase (Contains: 6 x 10oz Silver Bar)
+ Briefcase (Contains: 6 x 10oz Silver Bar)
+ Чемоданчик (Содержит: 6 серебряных слитков по 10 унций)
+ Briefcase (Contains: 6 x 10oz Silver Bar)
+ Briefcase (Contains: 6 x 10oz Silver Bar)
+ Briefcase (Contains: 6 x 10oz Silver Bar)
+
+
+ Briefcase (Contains: 7 x 10oz Silver Bar)
+ Briefcase (Contains: 7 x 10oz Silver Bar)
+ Чемоданчик (Содержит: 7 серебряных слитков по 10 унций)
+ Briefcase (Contains: 7 x 10oz Silver Bar)
+ Briefcase (Contains: 7 x 10oz Silver Bar)
+ Briefcase (Contains: 7 x 10oz Silver Bar)
+
+
+ Briefcase (Contains: 8 x 10oz Silver Bar)
+ Briefcase (Contains: 8 x 10oz Silver Bar)
+ Чемоданчик (Содержит: 8 серебряных слитков по 10 унций)
+ Briefcase (Contains: 8 x 10oz Silver Bar)
+ Briefcase (Contains: 8 x 10oz Silver Bar)
+ Briefcase (Contains: 8 x 10oz Silver Bar)
+
+
+ Briefcase (Contains: 9 x 10oz Silver Bar)
+ Briefcase (Contains: 9 x 10oz Silver Bar)
+ Чемоданчик (Содержит: 9 серебряных слитков по 10 унций)
+ Briefcase (Contains: 9 x 10oz Silver Bar)
+ Briefcase (Contains: 9 x 10oz Silver Bar)
+ Briefcase (Contains: 9 x 10oz Silver Bar)
+
+
+ Briefcase (Contains: 10 x 10oz Silver Bar)
+ Briefcase (Contains: 10 x 10oz Silver Bar)
+ Чемоданчик (Содержит: 10 серебряных слитков по 10 унций)
+ Briefcase (Contains: 10 x 10oz Silver Bar)
+ Briefcase (Contains: 10 x 10oz Silver Bar)
+ Briefcase (Contains: 10 x 10oz Silver Bar)
+