mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-20 15:12:56 +03:00
Change scope and type of configs from name to numbers
This got discussed earlier. Since epoch got merged with DayZ Mod we have a different name for the scope and type of configs. A proper config should use numbers for those entries. This is the same how arma configs are written. The basicDefines.hpp has all the needed information stored. Also, this removes the weight entries from the magazines since we have them in a separate folder, so admins can edit them.
This commit is contained in:
@@ -1,14 +1,12 @@
|
||||
class ItemJerrycanEmpty : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
type = 256;
|
||||
model = "\dayz_equip\models\jerrycan.p3d";
|
||||
picture = "\dayz_equip\textures\equip_jerrycan_e_ca.paa";
|
||||
displayName = $STR_ITEM_NAME_JERRYCAN_EMPTY;
|
||||
descriptionShort = $STR_ITEM_DESC_JERRYCAN_EMPTY;
|
||||
|
||||
descriptionShort = $STR_ITEM_DESC_JERRYCAN_EMPTY;
|
||||
fuelQuantity = 0;
|
||||
fullcan = "ItemJerrycan";
|
||||
};
|
||||
@@ -17,16 +15,17 @@ class ItemJerrycan : ItemJerrycanEmpty
|
||||
{
|
||||
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
|
||||
displayName = $STR_ITEM_NAME_JERRYCAN;
|
||||
descriptionShort = $STR_ITEM_DESC_JERRYCAN;
|
||||
|
||||
descriptionShort = $STR_ITEM_DESC_JERRYCAN;
|
||||
fuelQuantity = 20;
|
||||
containerEmpty = "ItemJerrycanEmpty";
|
||||
|
||||
//used for tent burning
|
||||
fireIntensity = 6;
|
||||
|
||||
class ItemActions {
|
||||
class Empty {
|
||||
class ItemActions
|
||||
{
|
||||
class Empty
|
||||
{
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
@@ -35,13 +34,11 @@ class ItemJerrycan : ItemJerrycanEmpty
|
||||
|
||||
class ItemFuelcanEmpty : ItemJerrycanEmpty
|
||||
{
|
||||
type = WeaponSlotItem;
|
||||
|
||||
type = 256;
|
||||
model = "z\addons\dayz_communityassets\models\fuelcan.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_fuelcan_empty_CA.paa";
|
||||
displayName = $STR_ITEM_NAME_FUELCAN_EMPTY;
|
||||
descriptionShort = $STR_ITEM_DESC_FUELCAN_EMPTY;
|
||||
|
||||
descriptionShort = $STR_ITEM_DESC_FUELCAN_EMPTY;
|
||||
fuelQuantity = 0;
|
||||
fullcan = "ItemFuelcan";
|
||||
};
|
||||
@@ -50,16 +47,17 @@ class ItemFuelcan : ItemFuelcanEmpty
|
||||
{
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_fuelcan_CA.paa";
|
||||
displayName = $STR_ITEM_NAME_FUELCAN;
|
||||
descriptionShort = $STR_ITEM_DESC_FUELCAN;
|
||||
|
||||
descriptionShort = $STR_ITEM_DESC_FUELCAN;
|
||||
fuelQuantity = 5;
|
||||
containerEmpty = "ItemFuelcanEmpty";
|
||||
|
||||
//used for tent burning
|
||||
fireIntensity = 4;
|
||||
|
||||
class ItemActions {
|
||||
class Empty {
|
||||
class ItemActions
|
||||
{
|
||||
class Empty
|
||||
{
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
@@ -68,7 +66,7 @@ class ItemFuelcan : ItemFuelcanEmpty
|
||||
|
||||
class ItemFuelBarrel: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
fuelQuantity = 210;
|
||||
type = 256;
|
||||
@@ -79,8 +77,10 @@ class ItemFuelBarrel: CA_Magazine
|
||||
fireIntensity = 6; //used for tent burning
|
||||
containerEmpty = "ItemFuelBarrelEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Empty {
|
||||
class ItemActions
|
||||
{
|
||||
class Empty
|
||||
{
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
@@ -88,7 +88,7 @@ class ItemFuelBarrel: CA_Magazine
|
||||
};
|
||||
class ItemFuelBarrelEmpty: ItemFuelBarrel
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
fuelQuantity = 0;
|
||||
type = 256;
|
||||
@@ -96,6 +96,7 @@ class ItemFuelBarrelEmpty: ItemFuelBarrel
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_oildrum_e_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_EMPTYFUELBARREL_DESC;
|
||||
fullcan = "ItemFuelBarrel";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
@@ -112,28 +113,34 @@ class ItemFuelBarrelEmpty: ItemFuelBarrel
|
||||
|
||||
class ItemOilBarrel: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_OILBARREL;
|
||||
model = "\z\addons\dayz_epoch\models\oil_drum_model.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_OILBARREL_DESC;
|
||||
model = "\z\addons\dayz_epoch\models\oil_drum_model.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||
containerEmpty = "ItemOilBarrelEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Empty {
|
||||
class ItemActions
|
||||
{
|
||||
class Empty
|
||||
{
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemOilBarrelEmpty : ItemOilBarrel
|
||||
class ItemOilBarrelEmpty : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_EMPTYOILBARREL;
|
||||
descriptionShort = $STR_EPOCH_EMPTYOILBARREL_DESC;
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_oildrum_e_CA.paa";
|
||||
model = "\z\addons\dayz_epoch\models\oil_drum_model.p3d";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
@@ -149,11 +156,15 @@ class ItemOilBarrelEmpty : ItemOilBarrel
|
||||
};
|
||||
};
|
||||
|
||||
class ItemMethylaminBarrelEmpty : ItemOilBarrel
|
||||
class ItemMethylaminBarrelEmpty : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_EMPTYMETHYLAMINEBARREL;
|
||||
descriptionShort = $STR_EPOCH_EMPTYMETHYLAMINEBARREL_DESC;
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_oildrum_e_CA.paa";
|
||||
model = "\z\addons\dayz_epoch\models\oil_drum_model.p3d";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
@@ -169,14 +180,21 @@ class ItemMethylaminBarrelEmpty : ItemOilBarrel
|
||||
};
|
||||
};
|
||||
|
||||
class ItemMethylaminBarrel : ItemOilBarrel
|
||||
class ItemMethylaminBarrel : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
model = "\z\addons\dayz_epoch\models\oil_drum_model.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||
displayName = $STR_EPOCH_METHYLAMINEBARREL;
|
||||
descriptionShort = $STR_EPOCH_METHYLAMINEBARREL_DESC;
|
||||
containerEmpty = "ItemMethylaminBarrelEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Empty {
|
||||
class ItemActions
|
||||
{
|
||||
class Empty
|
||||
{
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
|
||||
@@ -1,19 +1,23 @@
|
||||
class bulk: CA_Magazine {
|
||||
scope = public;
|
||||
class bulk: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_BULK_NAME;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC;
|
||||
weight = 5;
|
||||
};
|
||||
class bulk_empty: bulk {
|
||||
|
||||
class bulk_empty: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_EMPTY;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_EMPTY;
|
||||
weight = 5;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_221;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -21,7 +25,8 @@ class bulk_empty: bulk {
|
||||
output[] = {{"bulk_ItemSodaCoke",1}};
|
||||
input[] = {{"bulk_empty",1},{"ItemSodaCoke",6}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_222;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -30,7 +35,8 @@ class bulk_empty: bulk {
|
||||
input[] = {{"bulk_empty",1},{"ItemSodaPepsi",6}};
|
||||
};
|
||||
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_223;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -38,7 +44,8 @@ class bulk_empty: bulk {
|
||||
output[] = {{"bulk_PartGenericHalf",1}};
|
||||
input[] = {{"bulk_empty",1},{"PartGeneric",6}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_224;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -46,7 +53,8 @@ class bulk_empty: bulk {
|
||||
output[] = {{"bulk_ItemTankTrapHalf",1}};
|
||||
input[] = {{"bulk_empty",1},{"ItemTankTrap",6}};
|
||||
};
|
||||
class Crafting4 {
|
||||
class Crafting4
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_225;
|
||||
script = ";['Crafting4','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -54,7 +62,8 @@ class bulk_empty: bulk {
|
||||
output[] = {{"bulk_ItemWireHalf",1}};
|
||||
input[] = {{"bulk_empty",1},{"ItemWire",6}};
|
||||
};
|
||||
class Crafting5 {
|
||||
class Crafting5
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_226;
|
||||
script = ";['Crafting5','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -65,17 +74,21 @@ class bulk_empty: bulk {
|
||||
};
|
||||
};
|
||||
|
||||
class bulk_ItemSodaCoke: bulk {
|
||||
class bulk_ItemSodaCoke: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_SODACOKE_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SODACOKE_HALF;
|
||||
weight = 6;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemSodaCoke",6,"magazine"};
|
||||
};
|
||||
class Crafting {
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_221;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -85,12 +98,16 @@ class bulk_ItemSodaCoke: bulk {
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_ItemSodaCokeFull: bulk {
|
||||
|
||||
class bulk_ItemSodaCokeFull: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_SODACOKE_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SODACOKE_FULL;
|
||||
weight = 7;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemSodaCoke",12,"magazine"};
|
||||
@@ -98,17 +115,21 @@ class bulk_ItemSodaCokeFull: bulk {
|
||||
};
|
||||
};
|
||||
|
||||
class bulk_ItemSodaPepsi: bulk {
|
||||
class bulk_ItemSodaPepsi: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_SODAPEPSI_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SODAPEPSI_HALF;
|
||||
weight = 6;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemSodaPepsi",6,"magazine"};
|
||||
};
|
||||
class Crafting {
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_222;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -118,12 +139,15 @@ class bulk_ItemSodaPepsi: bulk {
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_ItemSodaPepsiFull: bulk {
|
||||
class bulk_ItemSodaPepsiFull: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_SODAPEPSI_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SODAPEPSI_FULL;
|
||||
weight = 7;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemSodaPepsi",12,"magazine"};
|
||||
@@ -131,17 +155,21 @@ class bulk_ItemSodaPepsiFull: bulk {
|
||||
};
|
||||
};
|
||||
|
||||
class bulk_FoodbaconCooked: bulk {
|
||||
class bulk_FoodbaconCooked: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_BACON_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_BACON_HALF;
|
||||
weight = 5;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"FoodbaconCooked",6,"magazine"};
|
||||
};
|
||||
class Crafting {
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_227;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -154,9 +182,11 @@ class bulk_FoodbaconCooked: bulk {
|
||||
class bulk_FoodbaconCookedFull: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_BACON_FULL;
|
||||
descriptionshort = $STR_EPOCH_BULK_DESC_BACON_FULL;
|
||||
weight = 5;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"FoodbaconCooked",12,"magazine"};
|
||||
@@ -165,48 +195,60 @@ class bulk_FoodbaconCookedFull: bulk {
|
||||
};
|
||||
|
||||
// Ammo
|
||||
class bulk_17Rnd_9x19_glock17: bulk {
|
||||
class bulk_17Rnd_9x19_glock17: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_G17;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_G17;
|
||||
weight = 17;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"17Rnd_9x19_glock17",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_15Rnd_9x19_M9SD: bulk {
|
||||
class bulk_15Rnd_9x19_M9SD: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_M9SD;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_M9SD;
|
||||
weight = 17;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"15Rnd_9x19_M9SD",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_30Rnd_9x19_MP5SD: bulk {
|
||||
class bulk_30Rnd_9x19_MP5SD: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_MP5SD;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_MP5SD;
|
||||
weight = 18;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"30Rnd_9x19_MP5SD",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_30Rnd_556x45_StanagSD: bulk {
|
||||
class bulk_30Rnd_556x45_StanagSD: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_STANAGSD;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_STANAGSD;
|
||||
weight = 20;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"30Rnd_556x45_StanagSD",12,"magazine"};
|
||||
@@ -214,12 +256,15 @@ class bulk_30Rnd_556x45_StanagSD: bulk {
|
||||
};
|
||||
};
|
||||
|
||||
class bulk_ItemSandbag: bulk {
|
||||
class bulk_ItemSandbag: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_SANDBAG;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SANDBAG;
|
||||
weight = 60;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemSandbag",12,"magazine"};
|
||||
@@ -227,29 +272,36 @@ class bulk_ItemSandbag: bulk {
|
||||
};
|
||||
};
|
||||
|
||||
class bulk_ItemTankTrap: bulk {
|
||||
class bulk_ItemTankTrap: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_TANKTRAP_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_TANKTRAP_FULL;
|
||||
weight = 25;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemTankTrap",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_ItemTankTrapHalf: bulk {
|
||||
class bulk_ItemTankTrapHalf: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_TANKTRAP_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_TANKTRAP_HALF;
|
||||
weight = 12.5;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemTankTrap",6,"magazine"};
|
||||
};
|
||||
class Crafting {
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_224;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -260,29 +312,36 @@ class bulk_ItemTankTrapHalf: bulk {
|
||||
};
|
||||
};
|
||||
|
||||
class bulk_ItemWire: bulk {
|
||||
class bulk_ItemWire: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_WIREKIT_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_WIREKIT_FULL;
|
||||
weight = 25;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemWire",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_ItemWireHalf: bulk {
|
||||
class bulk_ItemWireHalf: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_WIREKIT_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_WIREKIT_HALF;
|
||||
weight = 12.5;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemWire",6,"magazine"};
|
||||
};
|
||||
class Crafting {
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_225;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -293,29 +352,36 @@ class bulk_ItemWireHalf: bulk {
|
||||
};
|
||||
};
|
||||
|
||||
class bulk_PartGeneric: bulk {
|
||||
class bulk_PartGeneric: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_GENERIC_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_GENERIC_FULL;
|
||||
weight = 60;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"PartGeneric",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_PartGenericHalf: bulk {
|
||||
class bulk_PartGenericHalf: bulk
|
||||
{
|
||||
displayName = $STR_EPOCH_BULK_DISP_GENERIC_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_GENERIC_HALF;
|
||||
weight = 30;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CreateMags
|
||||
{
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"PartGeneric",6,"magazine"};
|
||||
};
|
||||
class Crafting {
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_223;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
|
||||
@@ -1,15 +1,19 @@
|
||||
// For Chainsaw
|
||||
class ItemMixOil : CA_Magazine {
|
||||
scope = public;
|
||||
class ItemMixOil : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
displayName = $STR_EPOCH_CHAINSAW_OIL;
|
||||
model = "\z\addons\dayz_epoch\models\oilmix.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_oilmix_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
type = 256;
|
||||
descriptionShort = $STR_EPOCH_CHAINSAW_OIL;
|
||||
sfx = "refuel";
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_CHAINSAW_MIXGAS_ACTION;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -20,8 +24,9 @@ class ItemMixOil : CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class CSGAS : CA_Magazine {
|
||||
scope = public;
|
||||
class CSGAS : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
type = VSoft;
|
||||
displayName = $STR_EPOCH_CHAINSAW_GAS;
|
||||
descriptionShort = $STR_EPOCH_CHAINSAW_GAS_DESC;
|
||||
@@ -61,8 +66,9 @@ class CSGAS : CA_Magazine {
|
||||
hit_wood = "ImpactWood";
|
||||
};
|
||||
};
|
||||
class ItemJerryMixed: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemJerryMixed: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS20L_CAN;
|
||||
@@ -72,8 +78,10 @@ class ItemJerryMixed: CA_Magazine {
|
||||
sfx = "refuel";
|
||||
containerEmpty = "ItemJerrycanEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -81,14 +89,16 @@ class ItemJerryMixed: CA_Magazine {
|
||||
output[] = {{"CSGAS",1},{"ItemJerryMixed4",1}};
|
||||
input[] = {{"ItemJerryMixed",1}};
|
||||
};
|
||||
class Empty {
|
||||
class Empty
|
||||
{
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemJerryMixed4: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemJerryMixed4: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS16L_CAN;
|
||||
@@ -98,8 +108,10 @@ class ItemJerryMixed4: CA_Magazine {
|
||||
sfx = "refuel";
|
||||
containerEmpty = "ItemJerrycanEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -107,14 +119,16 @@ class ItemJerryMixed4: CA_Magazine {
|
||||
output[] = {{"CSGAS",1},{"ItemJerryMixed3",1}};
|
||||
input[] = {{"ItemJerryMixed4",1}};
|
||||
};
|
||||
class Empty {
|
||||
class Empty
|
||||
{
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemJerryMixed3: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemJerryMixed3: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS12L_CAN;
|
||||
@@ -124,8 +138,10 @@ class ItemJerryMixed3: CA_Magazine {
|
||||
sfx = "refuel";
|
||||
containerEmpty = "ItemJerrycanEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -133,14 +149,16 @@ class ItemJerryMixed3: CA_Magazine {
|
||||
output[] = {{"CSGAS",1},{"ItemJerryMixed2",1}};
|
||||
input[] = {{"ItemJerryMixed3",1}};
|
||||
};
|
||||
class Empty {
|
||||
class Empty
|
||||
{
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemJerryMixed2: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemJerryMixed2: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS8L_CAN;
|
||||
@@ -150,8 +168,10 @@ class ItemJerryMixed2: CA_Magazine {
|
||||
sfx = "refuel";
|
||||
containerEmpty = "ItemJerrycanEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -159,14 +179,16 @@ class ItemJerryMixed2: CA_Magazine {
|
||||
output[] = {{"CSGAS",1},{"ItemJerryMixed1",1}};
|
||||
input[] = {{"ItemJerryMixed2",1}};
|
||||
};
|
||||
class Empty {
|
||||
class Empty
|
||||
{
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemJerryMixed1: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemJerryMixed1: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS4L_CAN;
|
||||
@@ -176,8 +198,10 @@ class ItemJerryMixed1: CA_Magazine {
|
||||
sfx = "refuel";
|
||||
containerEmpty = "ItemJerrycanEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -185,7 +209,8 @@ class ItemJerryMixed1: CA_Magazine {
|
||||
output[] = {{"CSGAS",1},{"ItemJerrycanEmpty",1}};
|
||||
input[] = {{"ItemJerryMixed1",1}};
|
||||
};
|
||||
class Empty {
|
||||
class Empty
|
||||
{
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
class ItemStone: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemStone;//"Rough Stone"
|
||||
@@ -22,14 +22,14 @@ class ItemConcreteBlock: CA_Magazine //Construection,indestrial
|
||||
|
||||
class CinderBlocks: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
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 = $STR_EPOCH_CINDERBLOCKS_DESC;
|
||||
weight = 100;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
@@ -72,22 +72,19 @@ class CinderBlocks: CA_Magazine
|
||||
};
|
||||
class MortarBucket: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_BUCKETOFMORTAR;
|
||||
model = "\z\addons\dayz_epoch\models\mortar.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_mortar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BUCKETOFMORTAR_DESC;
|
||||
weight = 21;
|
||||
};
|
||||
|
||||
class equip_brick : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\z\addons\dayz_communityassets\models\brick.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_brick.paa";
|
||||
displayName = $STR_ITEM_NAME_equip_brick;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class ItemAluminumBar: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemAluminumBar: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_ALUMINUM;
|
||||
@@ -8,16 +9,20 @@ class ItemAluminumBar: CA_Magazine {
|
||||
descriptionShort = $STR_EPOCH_ALUMINUM_DESC;
|
||||
|
||||
};
|
||||
class ItemAluminumBar10oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemAluminumBar10oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_10OZALUMINUM;
|
||||
model = "\z\addons\dayz_epoch\models\aluminum_bar.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_alum_bar_10oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_10OZALUMINUM_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
|
||||
@@ -1,18 +1,23 @@
|
||||
class ItemBriefcase_Base: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemBriefcase_Base: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
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 {
|
||||
class ItemBriefcaseEmpty: ItemBriefcase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_E_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_EMPTY;
|
||||
weight = 1;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -20,7 +25,8 @@ class ItemBriefcaseEmpty: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase10oz",1}};
|
||||
input[] = {{"ItemBriefcaseEmpty",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_198;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -28,7 +34,8 @@ class ItemBriefcaseEmpty: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcaseEmpty",1},{"ItemGoldBar10oz",10}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -36,7 +43,8 @@ class ItemBriefcaseEmpty: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcaseS10oz",1}};
|
||||
input[] = {{"ItemBriefcaseEmpty",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_198;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -46,13 +54,16 @@ class ItemBriefcaseEmpty: ItemBriefcase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcase10oz: ItemBriefcase_Base {
|
||||
class ItemBriefcase10oz: ItemBriefcase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_10oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_1X10OZGOLD;
|
||||
weight = 1.2;
|
||||
worth = 1000;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -60,7 +71,8 @@ class ItemBriefcase10oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase20oz",1}};
|
||||
input[] = {{"ItemBriefcase10oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_199;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -68,7 +80,8 @@ class ItemBriefcase10oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase10oz",1},{"ItemGoldBar10oz",9}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -78,13 +91,16 @@ class ItemBriefcase10oz: ItemBriefcase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcase20oz: ItemBriefcase_Base {
|
||||
class ItemBriefcase20oz: ItemBriefcase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_20oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_2X10OZGOLD;
|
||||
weight = 1.5;
|
||||
worth = 2000;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -92,7 +108,8 @@ class ItemBriefcase20oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase30oz",1}};
|
||||
input[] = {{"ItemBriefcase20oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_202;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -100,7 +117,8 @@ class ItemBriefcase20oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase20oz",1},{"ItemGoldBar10oz",8}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -108,7 +126,8 @@ class ItemBriefcase20oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase10oz",1}};
|
||||
input[] = {{"ItemBriefcase20oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -118,13 +137,16 @@ class ItemBriefcase20oz: ItemBriefcase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcase30oz: ItemBriefcase_Base {
|
||||
class ItemBriefcase30oz: ItemBriefcase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_30oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_3X10OZGOLD;
|
||||
weight = 1.8;
|
||||
worth = 3000;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -132,7 +154,8 @@ class ItemBriefcase30oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase40oz",1}};
|
||||
input[] = {{"ItemBriefcase30oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_203;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -140,7 +163,8 @@ class ItemBriefcase30oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase30oz",1},{"ItemGoldBar10oz",7}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -148,7 +172,8 @@ class ItemBriefcase30oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase20oz",1}};
|
||||
input[] = {{"ItemBriefcase30oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -158,13 +183,16 @@ class ItemBriefcase30oz: ItemBriefcase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcase40oz: ItemBriefcase_Base {
|
||||
class ItemBriefcase40oz: ItemBriefcase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_40oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_4X10OZGOLD;
|
||||
weight = 2.1;
|
||||
worth = 4000;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -172,7 +200,8 @@ class ItemBriefcase40oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase50oz",1}};
|
||||
input[] = {{"ItemBriefcase40oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_204;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -180,7 +209,8 @@ class ItemBriefcase40oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase40oz",1},{"ItemGoldBar10oz",6}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -188,7 +218,8 @@ class ItemBriefcase40oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase30oz",1}};
|
||||
input[] = {{"ItemBriefcase40oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -198,13 +229,16 @@ class ItemBriefcase40oz: ItemBriefcase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcase50oz: ItemBriefcase_Base {
|
||||
class ItemBriefcase50oz: ItemBriefcase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_50oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_5X10OZGOLD;
|
||||
weight = 2.4;
|
||||
worth = 5000;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -212,7 +246,8 @@ class ItemBriefcase50oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase60oz",1}};
|
||||
input[] = {{"ItemBriefcase50oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_205;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -220,7 +255,8 @@ class ItemBriefcase50oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase50oz",1},{"ItemGoldBar10oz",5}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -228,7 +264,8 @@ class ItemBriefcase50oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase40oz",1}};
|
||||
input[] = {{"ItemBriefcase50oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -238,13 +275,16 @@ class ItemBriefcase50oz: ItemBriefcase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcase60oz: ItemBriefcase_Base {
|
||||
class ItemBriefcase60oz: ItemBriefcase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_60oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_6X10OZGOLD;
|
||||
weight = 2.7;
|
||||
worth = 6000;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -252,7 +292,8 @@ class ItemBriefcase60oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase70oz",1}};
|
||||
input[] = {{"ItemBriefcase60oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_206;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -260,7 +301,8 @@ class ItemBriefcase60oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase60oz",1},{"ItemGoldBar10oz",4}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -268,7 +310,8 @@ class ItemBriefcase60oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase50oz",1}};
|
||||
input[] = {{"ItemBriefcase60oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -278,13 +321,16 @@ class ItemBriefcase60oz: ItemBriefcase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcase70oz: ItemBriefcase_Base {
|
||||
class ItemBriefcase70oz: ItemBriefcase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_70oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_7X10OZGOLD;
|
||||
weight = 2.9;
|
||||
worth = 7000;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -292,7 +338,8 @@ class ItemBriefcase70oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase80oz",1}};
|
||||
input[] = {{"ItemBriefcase70oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_207;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -300,7 +347,8 @@ class ItemBriefcase70oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase70oz",1},{"ItemGoldBar10oz",3}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -308,7 +356,8 @@ class ItemBriefcase70oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase60oz",1}};
|
||||
input[] = {{"ItemBriefcase70oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -318,13 +367,16 @@ class ItemBriefcase70oz: ItemBriefcase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcase80oz: ItemBriefcase_Base {
|
||||
class ItemBriefcase80oz: ItemBriefcase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_80oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_8X10OZGOLD;
|
||||
weight = 3.2;
|
||||
worth = 8000;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -332,7 +384,8 @@ class ItemBriefcase80oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase90oz",1}};
|
||||
input[] = {{"ItemBriefcase80oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_208;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -340,7 +393,8 @@ class ItemBriefcase80oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase80oz",1},{"ItemGoldBar10oz",2}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -348,7 +402,8 @@ class ItemBriefcase80oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase70oz",1}};
|
||||
input[] = {{"ItemBriefcase80oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -358,13 +413,16 @@ class ItemBriefcase80oz: ItemBriefcase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcase90oz: ItemBriefcase_Base {
|
||||
class ItemBriefcase90oz: ItemBriefcase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_90oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_9X10OZGOLD;
|
||||
weight = 3.5;
|
||||
worth = 9000;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -372,7 +430,8 @@ class ItemBriefcase90oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase90oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -380,7 +439,8 @@ class ItemBriefcase90oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase80oz",1}};
|
||||
input[] = {{"ItemBriefcase90oz",1}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -390,13 +450,16 @@ class ItemBriefcase90oz: ItemBriefcase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcase100oz: ItemBriefcase_Base {
|
||||
class ItemBriefcase100oz: ItemBriefcase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_100oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_10X10OZGOLD;
|
||||
weight = 3.8;
|
||||
worth = 10000;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -404,7 +467,8 @@ class ItemBriefcase100oz: ItemBriefcase_Base {
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase90oz",1}};
|
||||
input[] = {{"ItemBriefcase100oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -415,17 +479,21 @@ class ItemBriefcase100oz: ItemBriefcase_Base {
|
||||
};
|
||||
};
|
||||
// Silver
|
||||
class ItemSilvercase_Base: ItemBriefcase_Base {
|
||||
class ItemSilvercase_Base: ItemBriefcase_Base
|
||||
{
|
||||
model = "\z\addons\dayz_epoch\models\silvercase.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_E_CA.paa";
|
||||
};
|
||||
class ItemBriefcaseS10oz: ItemSilvercase_Base {
|
||||
class ItemBriefcaseS10oz: ItemSilvercase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_10oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_1X10OZSILVER;
|
||||
weight = 1.2;
|
||||
worth = 10;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -433,7 +501,8 @@ class ItemBriefcaseS10oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS20oz",1}};
|
||||
input[] = {{"ItemBriefcaseS10oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_199;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -441,7 +510,8 @@ class ItemBriefcaseS10oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS10oz",1},{"ItemSilverBar10oz",9}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -451,13 +521,16 @@ class ItemBriefcaseS10oz: ItemSilvercase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcaseS20oz: ItemSilvercase_Base {
|
||||
class ItemBriefcaseS20oz: ItemSilvercase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_20oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_2X10OZSILVER;
|
||||
weight = 1.5;
|
||||
worth = 20;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -465,7 +538,8 @@ class ItemBriefcaseS20oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS30oz",1}};
|
||||
input[] = {{"ItemBriefcaseS20oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_202;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -473,7 +547,8 @@ class ItemBriefcaseS20oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS20oz",1},{"ItemSilverBar10oz",8}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -481,7 +556,8 @@ class ItemBriefcaseS20oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS10oz",1}};
|
||||
input[] = {{"ItemBriefcaseS20oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -491,13 +567,16 @@ class ItemBriefcaseS20oz: ItemSilvercase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcaseS30oz: ItemSilvercase_Base {
|
||||
class ItemBriefcaseS30oz: ItemSilvercase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_30oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_3X10OZSILVER;
|
||||
weight = 1.8;
|
||||
worth = 30;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -505,7 +584,8 @@ class ItemBriefcaseS30oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS40oz",1}};
|
||||
input[] = {{"ItemBriefcaseS30oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_203;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -513,7 +593,8 @@ class ItemBriefcaseS30oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS30oz",1},{"ItemSilverBar10oz",7}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -521,7 +602,8 @@ class ItemBriefcaseS30oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS20oz",1}};
|
||||
input[] = {{"ItemBriefcaseS30oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -531,13 +613,16 @@ class ItemBriefcaseS30oz: ItemSilvercase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcaseS40oz: ItemSilvercase_Base {
|
||||
class ItemBriefcaseS40oz: ItemSilvercase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_40oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_4X10OZSILVER;
|
||||
weight = 2.1;
|
||||
worth = 40;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -545,7 +630,8 @@ class ItemBriefcaseS40oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS50oz",1}};
|
||||
input[] = {{"ItemBriefcaseS40oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_204;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -553,7 +639,8 @@ class ItemBriefcaseS40oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS40oz",1},{"ItemSilverBar10oz",6}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -561,7 +648,8 @@ class ItemBriefcaseS40oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS30oz",1}};
|
||||
input[] = {{"ItemBriefcaseS40oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -571,13 +659,16 @@ class ItemBriefcaseS40oz: ItemSilvercase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcaseS50oz: ItemSilvercase_Base {
|
||||
class ItemBriefcaseS50oz: ItemSilvercase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_50oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_5X10OZSILVER;
|
||||
weight = 2.4;
|
||||
worth = 50;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -585,7 +676,8 @@ class ItemBriefcaseS50oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS60oz",1}};
|
||||
input[] = {{"ItemBriefcaseS50oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_205;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -593,7 +685,8 @@ class ItemBriefcaseS50oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS50oz",1},{"ItemSilverBar10oz",5}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -601,7 +694,8 @@ class ItemBriefcaseS50oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS40oz",1}};
|
||||
input[] = {{"ItemBriefcaseS50oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -611,13 +705,16 @@ class ItemBriefcaseS50oz: ItemSilvercase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcaseS60oz: ItemSilvercase_Base {
|
||||
class ItemBriefcaseS60oz: ItemSilvercase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_60oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_6X10OZSILVER;
|
||||
weight = 2.7;
|
||||
worth = 60;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -625,7 +722,8 @@ class ItemBriefcaseS60oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS70oz",1}};
|
||||
input[] = {{"ItemBriefcaseS60oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_206;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -633,7 +731,8 @@ class ItemBriefcaseS60oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS60oz",1},{"ItemSilverBar10oz",4}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -641,7 +740,8 @@ class ItemBriefcaseS60oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS50oz",1}};
|
||||
input[] = {{"ItemBriefcaseS60oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -651,13 +751,16 @@ class ItemBriefcaseS60oz: ItemSilvercase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcaseS70oz: ItemSilvercase_Base {
|
||||
class ItemBriefcaseS70oz: ItemSilvercase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_70oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_7X10OZSILVER;
|
||||
weight = 2.9;
|
||||
worth = 70;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -665,7 +768,8 @@ class ItemBriefcaseS70oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS80oz",1}};
|
||||
input[] = {{"ItemBriefcaseS70oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_207;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -673,7 +777,8 @@ class ItemBriefcaseS70oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS70oz",1},{"ItemSilverBar10oz",3}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -681,7 +786,8 @@ class ItemBriefcaseS70oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS60oz",1}};
|
||||
input[] = {{"ItemBriefcaseS70oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -691,13 +797,16 @@ class ItemBriefcaseS70oz: ItemSilvercase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcaseS80oz: ItemSilvercase_Base {
|
||||
class ItemBriefcaseS80oz: ItemSilvercase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_80oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_8X10OZSILVER;
|
||||
weight = 3.2;
|
||||
worth = 80;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -705,7 +814,8 @@ class ItemBriefcaseS80oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS90oz",1}};
|
||||
input[] = {{"ItemBriefcaseS80oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_208;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -713,7 +823,8 @@ class ItemBriefcaseS80oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS80oz",1},{"ItemSilverBar10oz",2}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -721,7 +832,8 @@ class ItemBriefcaseS80oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS70oz",1}};
|
||||
input[] = {{"ItemBriefcaseS80oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -731,13 +843,16 @@ class ItemBriefcaseS80oz: ItemSilvercase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcaseS90oz: ItemSilvercase_Base {
|
||||
class ItemBriefcaseS90oz: ItemSilvercase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_90oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_9X10OZSILVER;
|
||||
weight = 3.5;
|
||||
worth = 90;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -745,7 +860,8 @@ class ItemBriefcaseS90oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS90oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -753,7 +869,8 @@ class ItemBriefcaseS90oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS80oz",1}};
|
||||
input[] = {{"ItemBriefcaseS90oz",1}};
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -763,13 +880,16 @@ class ItemBriefcaseS90oz: ItemSilvercase_Base {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBriefcaseS100oz: ItemSilvercase_Base {
|
||||
class ItemBriefcaseS100oz: ItemSilvercase_Base
|
||||
{
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silvercase_100oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_10X10OZSILVER;
|
||||
weight = 3.8;
|
||||
worth = 100;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -777,7 +897,8 @@ class ItemBriefcaseS100oz: ItemSilvercase_Base {
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS90oz",1}};
|
||||
input[] = {{"ItemBriefcaseS100oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class ItemBronzeBar: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemBronzeBar: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_BRONZE;
|
||||
|
||||
@@ -1,13 +1,17 @@
|
||||
class ItemCopperBar: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemCopperBar: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_COPPER;
|
||||
model = "\z\addons\dayz_epoch\models\copper_bar.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_copper_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_COPPER_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_9;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -17,16 +21,20 @@ class ItemCopperBar: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemCopperBar10oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemCopperBar10oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_10OZCOPPER;
|
||||
model = "\z\addons\dayz_epoch\models\copper_bar_10oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_copper_bar_10oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_10OZCOPPER_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class ItemGoldBar: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemGoldBar: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 100;
|
||||
type = 256;
|
||||
@@ -7,8 +8,11 @@ class ItemGoldBar: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemGoldBar1oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_gold_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_GOLD_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -17,7 +21,8 @@ class ItemGoldBar: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar",2}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_9;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -27,8 +32,9 @@ class ItemGoldBar: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar2oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemGoldBar2oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 200;
|
||||
type = 256;
|
||||
@@ -36,8 +42,11 @@ class ItemGoldBar2oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemGoldBar2oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_gold_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_2OZGOLD_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -46,7 +55,8 @@ class ItemGoldBar2oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar2oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -55,7 +65,8 @@ class ItemGoldBar2oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar2oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_8;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -65,8 +76,9 @@ class ItemGoldBar2oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar3oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemGoldBar3oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 300;
|
||||
type = 256;
|
||||
@@ -74,8 +86,11 @@ class ItemGoldBar3oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemGoldBar3oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_gold_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_3OZGOLD_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -84,7 +99,8 @@ class ItemGoldBar3oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar3oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -93,7 +109,8 @@ class ItemGoldBar3oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar3oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_7;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -101,7 +118,8 @@ class ItemGoldBar3oz: CA_Magazine {
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar3oz",1},{"ItemGoldBar",7}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -111,8 +129,9 @@ class ItemGoldBar3oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar4oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemGoldBar4oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 400;
|
||||
type = 256;
|
||||
@@ -120,8 +139,11 @@ class ItemGoldBar4oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemGoldBar4oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_gold_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_4OZGOLD_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -130,7 +152,8 @@ class ItemGoldBar4oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar4oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -139,7 +162,8 @@ class ItemGoldBar4oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar4oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_6;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -147,7 +171,8 @@ class ItemGoldBar4oz: CA_Magazine {
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar4oz",1},{"ItemGoldBar",6}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -157,8 +182,9 @@ class ItemGoldBar4oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar5oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemGoldBar5oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 500;
|
||||
type = 256;
|
||||
@@ -166,8 +192,11 @@ class ItemGoldBar5oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemGoldBar5oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_gold_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_5OZGOLD_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -176,7 +205,8 @@ class ItemGoldBar5oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar5oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -185,7 +215,8 @@ class ItemGoldBar5oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar5oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_5;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -193,7 +224,8 @@ class ItemGoldBar5oz: CA_Magazine {
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar5oz",1},{"ItemGoldBar",5}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -203,8 +235,9 @@ class ItemGoldBar5oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar6oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemGoldBar6oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 600;
|
||||
type = 256;
|
||||
@@ -212,8 +245,11 @@ class ItemGoldBar6oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemGoldBar6oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_gold_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_6OZGOLD_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -222,7 +258,8 @@ class ItemGoldBar6oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar6oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -231,7 +268,8 @@ class ItemGoldBar6oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar6oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_4;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -239,7 +277,8 @@ class ItemGoldBar6oz: CA_Magazine {
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar6oz",1},{"ItemGoldBar",4}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -249,8 +288,9 @@ class ItemGoldBar6oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar7oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemGoldBar7oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 700;
|
||||
type = 256;
|
||||
@@ -258,8 +298,11 @@ class ItemGoldBar7oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemGoldBar7oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_gold_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_7OZGOLD_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -268,7 +311,8 @@ class ItemGoldBar7oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar7oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -277,7 +321,8 @@ class ItemGoldBar7oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar7oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_3;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -285,7 +330,8 @@ class ItemGoldBar7oz: CA_Magazine {
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar7oz",1},{"ItemGoldBar",3}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -295,8 +341,9 @@ class ItemGoldBar7oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar8oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemGoldBar8oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 800;
|
||||
type = 256;
|
||||
@@ -304,8 +351,11 @@ class ItemGoldBar8oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemGoldBar8oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_gold_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_8OZGOLD_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -314,7 +364,8 @@ class ItemGoldBar8oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar8oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -323,7 +374,8 @@ class ItemGoldBar8oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar8oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_2;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -331,7 +383,8 @@ class ItemGoldBar8oz: CA_Magazine {
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar8oz",1},{"ItemGoldBar",2}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -341,8 +394,9 @@ class ItemGoldBar8oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar9oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemGoldBar9oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 900;
|
||||
type = 256;
|
||||
@@ -350,8 +404,11 @@ class ItemGoldBar9oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemGoldBar9oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_gold_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_9OZGOLD_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -360,7 +417,8 @@ class ItemGoldBar9oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar9oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -369,7 +427,8 @@ class ItemGoldBar9oz: CA_Magazine {
|
||||
input[] = {{"ItemGoldBar9oz",1}};
|
||||
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -379,8 +438,9 @@ class ItemGoldBar9oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar10oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemGoldBar10oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 1000;
|
||||
type = 256;
|
||||
@@ -388,17 +448,20 @@ class ItemGoldBar10oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemGoldBar10oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_gold_bar_10oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_10OZGOLD_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar9oz",1},{"ItemGoldBar",1}};
|
||||
input[] = {{"ItemGoldBar10oz",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class ItemSilverBar: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemSilverBar: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 1;
|
||||
type = 256;
|
||||
@@ -7,8 +8,11 @@ class ItemSilverBar: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemSilverBar1oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silver_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_SILVER_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -17,7 +21,8 @@ class ItemSilverBar: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar",2}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_9;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -27,8 +32,9 @@ class ItemSilverBar: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar2oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemSilverBar2oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 2;
|
||||
type = 256;
|
||||
@@ -36,8 +42,11 @@ class ItemSilverBar2oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemSilverBar2oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silver_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_2OZSILVER_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -46,7 +55,8 @@ class ItemSilverBar2oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar2oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -55,7 +65,8 @@ class ItemSilverBar2oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar2oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_8;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -65,8 +76,9 @@ class ItemSilverBar2oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar3oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemSilverBar3oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 3;
|
||||
type = 256;
|
||||
@@ -74,8 +86,11 @@ class ItemSilverBar3oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemSilverBar3oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silver_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_3OZSILVER_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -84,7 +99,8 @@ class ItemSilverBar3oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar3oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -93,7 +109,8 @@ class ItemSilverBar3oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar3oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_7;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -101,7 +118,8 @@ class ItemSilverBar3oz: CA_Magazine {
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar3oz",1},{"ItemSilverBar",7}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -111,8 +129,9 @@ class ItemSilverBar3oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar4oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemSilverBar4oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 4;
|
||||
type = 256;
|
||||
@@ -120,8 +139,11 @@ class ItemSilverBar4oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemSilverBar4oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silver_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_4OZSILVER_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -130,7 +152,8 @@ class ItemSilverBar4oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar4oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -139,7 +162,8 @@ class ItemSilverBar4oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar4oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_6;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -147,7 +171,8 @@ class ItemSilverBar4oz: CA_Magazine {
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar4oz",1},{"ItemSilverBar",6}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -157,8 +182,9 @@ class ItemSilverBar4oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar5oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemSilverBar5oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 5;
|
||||
type = 256;
|
||||
@@ -166,8 +192,11 @@ class ItemSilverBar5oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemSilverBar5oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silver_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_5OZSILVER_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -176,7 +205,8 @@ class ItemSilverBar5oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar5oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -185,7 +215,8 @@ class ItemSilverBar5oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar5oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_5;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -193,7 +224,8 @@ class ItemSilverBar5oz: CA_Magazine {
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar5oz",1},{"ItemSilverBar",5}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -203,8 +235,9 @@ class ItemSilverBar5oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar6oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemSilverBar6oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 6;
|
||||
type = 256;
|
||||
@@ -212,8 +245,11 @@ class ItemSilverBar6oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemSilverBar6oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silver_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_6OZSILVER_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -222,7 +258,8 @@ class ItemSilverBar6oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar6oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -231,7 +268,8 @@ class ItemSilverBar6oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar6oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_4;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -239,7 +277,8 @@ class ItemSilverBar6oz: CA_Magazine {
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar6oz",1},{"ItemSilverBar",4}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -249,8 +288,9 @@ class ItemSilverBar6oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar7oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemSilverBar7oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 7;
|
||||
type = 256;
|
||||
@@ -258,8 +298,11 @@ class ItemSilverBar7oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemSilverBar7oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silver_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_7OZSILVER_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -268,7 +311,8 @@ class ItemSilverBar7oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar7oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -277,7 +321,8 @@ class ItemSilverBar7oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar7oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_3;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -285,7 +330,8 @@ class ItemSilverBar7oz: CA_Magazine {
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar7oz",1},{"ItemSilverBar",3}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -295,8 +341,9 @@ class ItemSilverBar7oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar8oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemSilverBar8oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 8;
|
||||
type = 256;
|
||||
@@ -304,8 +351,11 @@ class ItemSilverBar8oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemSilverBar8oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silver_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_8OZSILVER_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -314,7 +364,8 @@ class ItemSilverBar8oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar8oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -323,7 +374,8 @@ class ItemSilverBar8oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar8oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_2;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -331,7 +383,8 @@ class ItemSilverBar8oz: CA_Magazine {
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar8oz",1},{"ItemSilverBar",2}};
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -341,8 +394,9 @@ class ItemSilverBar8oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar9oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemSilverBar9oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 9;
|
||||
type = 256;
|
||||
@@ -350,8 +404,11 @@ class ItemSilverBar9oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemSilverBar9oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_silver_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_9OZSILVER_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -360,7 +417,8 @@ class ItemSilverBar9oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar9oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -369,7 +427,8 @@ class ItemSilverBar9oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar9oz",1}};
|
||||
|
||||
};
|
||||
class Crafting3 {
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -379,8 +438,9 @@ class ItemSilverBar9oz: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar10oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemSilverBar10oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
worth = 10;
|
||||
type = 256;
|
||||
@@ -388,8 +448,11 @@ class ItemSilverBar10oz: CA_Magazine {
|
||||
model = "\z\addons\dayz_epoch\models\ItemSilverBar10oz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_Silver_bar_10oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_10OZSILVER_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -398,7 +461,8 @@ class ItemSilverBar10oz: CA_Magazine {
|
||||
input[] = {{"ItemSilverBar10oz",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class ItemTinBar: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemTinBar: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_TIN;
|
||||
@@ -8,16 +9,20 @@ class ItemTinBar: CA_Magazine {
|
||||
descriptionShort = $STR_EPOCH_TIN_DESC;
|
||||
|
||||
};
|
||||
class ItemTinBar10oz: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemTinBar10oz: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_10OZTIN;
|
||||
model = "\z\addons\dayz_epoch\models\tin_bar.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_tin_bar_10oz_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_10OZTIN_DESC;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"fire"};
|
||||
|
||||
@@ -1,15 +1,18 @@
|
||||
class ItemDocument: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemDocument: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_DOCUMENT;
|
||||
model = "\z\addons\dayz_epoch\models\doc_generic.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_doc_generic_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_DOCUMENT_DESC;
|
||||
weight = 0.1;
|
||||
sfx = "document";
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_188;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
@@ -21,18 +24,21 @@ class ItemDocument: CA_Magazine {
|
||||
};
|
||||
};
|
||||
|
||||
class ItemPlotDeed: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemPlotDeed: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_PLOTDEED;
|
||||
model = "\z\addons\dayz_epoch\models\doc_generic.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_doc_generic_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_PLOTDEED_DESC;
|
||||
weight = 0.1;
|
||||
sfx = "document";
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLOTDEED_ACTION;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
@@ -43,70 +49,71 @@ class ItemPlotDeed: CA_Magazine {
|
||||
};
|
||||
};
|
||||
|
||||
class ItemLetter: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemLetter: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_LETTER;
|
||||
model = "\z\addons\dayz_epoch\models\doc_letter.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_doc_letter_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_LETTER_DESC;
|
||||
weight = 0.1;
|
||||
};
|
||||
|
||||
class ItemBook1: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemBook1: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_ROMANCENOVEL;
|
||||
model = "\z\addons\dayz_epoch\models\doc_trashy1.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_trashy1_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_ROMANCENOVEL_DESC;
|
||||
weight = 0.1;
|
||||
};
|
||||
|
||||
class ItemBook2: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemBook2: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_ROMANCENOVEL;
|
||||
model = "\z\addons\dayz_epoch\models\doc_trashy2.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_trashy2_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_ROMANCENOVEL_DESC2;
|
||||
weight = 0.1;
|
||||
};
|
||||
|
||||
class ItemBook3: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemBook3: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_BOOK;
|
||||
model = "\z\addons\dayz_epoch\models\doc_child1.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_child1_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_BOOK_DESC;
|
||||
weight = 0.1;
|
||||
};
|
||||
|
||||
class ItemBook4: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemBook4: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_BOOK;
|
||||
model = "\z\addons\dayz_epoch\models\doc_child2.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_child2_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_BOOK_DESC;
|
||||
weight = 0.1;
|
||||
};
|
||||
|
||||
class ItemNewspaper: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemNewspaper: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_TORNNEWSPAPER;
|
||||
model = "\z\addons\dayz_epoch\models\doc_deaths.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_deaths_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_TORNNEWSPAPER_DESC;
|
||||
weight = 0.1;
|
||||
|
||||
class ItemActions {
|
||||
class Obituaries {
|
||||
text = $STR_EPOCH_TORNNEWSPAPER_ACTION;
|
||||
@@ -115,17 +122,20 @@ class ItemNewspaper: CA_Magazine {
|
||||
};
|
||||
};
|
||||
|
||||
class ItemDocumentRamp: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemDocumentRamp: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_WOODRAMP;
|
||||
model = "\z\addons\dayz_epoch\models\doc_ramp.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_doc_ramp_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_WOODRAMP_DESC;
|
||||
weight = 0.1;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_189;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
@@ -138,10 +148,9 @@ class ItemDocumentRamp: CA_Magazine {
|
||||
|
||||
class ItemBookBible : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
type = 256;
|
||||
model = "z\addons\dayz_communityassets\models\bible.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_bible_CA.paa";
|
||||
displayName = $STR_BOOK_NAME_BIBLE;
|
||||
@@ -150,10 +159,9 @@ class ItemBookBible : CA_Magazine
|
||||
|
||||
class ItemTrashPaper : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
type = 256;
|
||||
model = "z\addons\dayz_communityassets\models\paper_sheet_clean_note.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_paper_sheet_note_ca.paa";
|
||||
displayName = $STR_name_ItemTrashPaper;
|
||||
@@ -162,18 +170,18 @@ class ItemTrashPaper : CA_Magazine
|
||||
|
||||
class ItemTrashPaperMusic : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
type = 256;
|
||||
model = "z\addons\dayz_communityassets\models\paper_sheet_musical.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_paper_sheet_musical_ca.paa";
|
||||
displayName = $STR_name_ItemTrashPaperMusic;
|
||||
descriptionShort = $STR_desc_ItemTrashPaperMusic;
|
||||
};
|
||||
|
||||
class equip_paper_sheet : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_paper_sheet : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_paper_sheet;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_paper_sheet;
|
||||
@@ -181,8 +189,9 @@ class equip_paper_sheet : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_note : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_note : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_note;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_note;
|
||||
@@ -191,90 +200,105 @@ class equip_note : CA_Magazine {
|
||||
};
|
||||
|
||||
// Vehicle upgrade parts
|
||||
class ItemORP: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemORP: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_VEHUP_ORP;
|
||||
model = "\z\addons\dayz_epoch\models\doc_Up1.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_docup1_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_VEHUP_ORP_DESC;
|
||||
weight = 0.1;
|
||||
sfx = "document";
|
||||
class ItemActions {
|
||||
class Upgrades {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Upgrades
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_UPGRADEV;
|
||||
script = "spawn player_upgradeVehicle;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemAVE: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemAVE: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_VEHUP_AVE;
|
||||
model = "\z\addons\dayz_epoch\models\doc_Up2.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_docup2_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_VEHUP_AVE_DESC;
|
||||
weight = 0.1;
|
||||
sfx = "document";
|
||||
class ItemActions {
|
||||
class Upgrades {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Upgrades
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_UPGRADEV;
|
||||
script = "spawn player_upgradeVehicle;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemLRK: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemLRK: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_VEHUP_LRK;
|
||||
model = "\z\addons\dayz_epoch\models\doc_Up3.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_docup3_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_VEHUP_LRK_DESC;
|
||||
weight = 0.1;
|
||||
sfx = "document";
|
||||
class ItemActions {
|
||||
class Upgrades {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Upgrades
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_UPGRADEV;
|
||||
script = "spawn player_upgradeVehicle;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemTNK: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemTNK: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_VEHUP_TNK;
|
||||
model = "\z\addons\dayz_epoch\models\doc_Up4.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_docup4_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_VEHUP_TNK_DESC;
|
||||
weight = 0.1;
|
||||
sfx = "document";
|
||||
class ItemActions {
|
||||
class Upgrades {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Upgrades
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_UPGRADEV;
|
||||
script = "spawn player_upgradeVehicle;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemARM: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemARM: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_VEHUP_ARM;
|
||||
model = "\z\addons\dayz_epoch\models\doc_Up4.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_docup4_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_VEHUP_ARM_DESC;
|
||||
weight = 0.1;
|
||||
sfx = "document";
|
||||
class ItemActions {
|
||||
class Upgrades {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Upgrades
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_UPGRADEV;
|
||||
script = "spawn player_upgradeVehicle;";
|
||||
};
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class equip_aa_battery : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_aa_battery : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_aa_battery;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_aa_battery;
|
||||
@@ -7,8 +8,9 @@ class equip_aa_battery : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_d_battery : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_d_battery : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_d_battery;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_d_battery;
|
||||
@@ -16,8 +18,9 @@ class equip_d_battery : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_floppywire : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_floppywire : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_floppywire;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_floppywire;
|
||||
@@ -26,8 +29,9 @@ class equip_floppywire : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_scrapelectronics : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_scrapelectronics : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_scrapelectronics;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_scrapelectronics;
|
||||
@@ -38,13 +42,14 @@ class equip_scrapelectronics : CA_Magazine {
|
||||
|
||||
class ItemLightBulb: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_LIGHTBULB;
|
||||
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 Crafting
|
||||
|
||||
@@ -20,7 +20,7 @@ class TimeBomb: CA_Magazine
|
||||
class Mine: TimeBomb
|
||||
{
|
||||
scope = 2;
|
||||
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
|
||||
type = 256;
|
||||
displayName = $STR_MN_MINE;
|
||||
picture = "\CA\weapons\data\equip\m_AT15_ca.paa";
|
||||
ammo = "Mine";
|
||||
@@ -32,7 +32,7 @@ class Mine: TimeBomb
|
||||
class MineE: TimeBomb
|
||||
{
|
||||
scope = 2;
|
||||
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
|
||||
type = 256;
|
||||
displayName = $STR_MN_MINE;
|
||||
picture = "\CA\weapons\data\equip\m_TM46_ca.paa";
|
||||
ammo = "MineE";
|
||||
@@ -45,7 +45,7 @@ class PipeBomb: TimeBomb
|
||||
scope = 2;
|
||||
displayName = $STR_DZ_MAG_SATCHEL_NAME; // Singular "Satchel Charge" for death messages "with a x"
|
||||
descriptionShort = $STR_DSS_Pipe_Bomb;
|
||||
type = WeaponSlotItem; // Only takes up one gear slot in Epoch
|
||||
type = 256;
|
||||
picture = "\CA\weapons\data\equip\m_satchel_CA.paa";
|
||||
model = "\z\addons\dayz_epoch_w\magazine\dze_satchel.p3d";
|
||||
value = 5;
|
||||
@@ -61,7 +61,7 @@ class PipeBomb: TimeBomb
|
||||
|
||||
class ItemC4Charge : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_C4_CHARGE;
|
||||
@@ -70,16 +70,20 @@ class ItemC4Charge : CA_Magazine
|
||||
picture = "\z\addons\dayz_communityassets\pictures\carbomb.paa";
|
||||
};
|
||||
|
||||
class ItemCarBomb : CA_Magazine {
|
||||
scope = public;
|
||||
class ItemCarBomb : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ITEM_NAME_equip_carbomb;
|
||||
model = "\ca\weapons\explosive.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\carbomb.paa";
|
||||
descriptionShort = $STR_ITEM_DESC_equip_carbomb;
|
||||
class ItemActions {
|
||||
class Use {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Use
|
||||
{
|
||||
text = $STR_ACTIONS_attach_carbomb;
|
||||
script = "spawn player_attach_bomb;";
|
||||
};
|
||||
|
||||
@@ -1,12 +1,10 @@
|
||||
class HandRoadFlare : HandGrenade
|
||||
{
|
||||
scope = public;
|
||||
|
||||
scope = 2;
|
||||
picture = "\dayz_weapons\textures\equip_roadflare_ca.paa";
|
||||
model = "\dayz_weapons\models\roadflare";
|
||||
displayName = $STR_MAG_NAME_4;
|
||||
descriptionShort = $STR_MAG_DESC_4;
|
||||
|
||||
descriptionShort = $STR_MAG_DESC_4;
|
||||
ammo = "RoadFlare";
|
||||
count = 10;
|
||||
|
||||
@@ -22,13 +20,11 @@ class HandRoadFlare : HandGrenade
|
||||
|
||||
class HandChemBlue : HandGrenade
|
||||
{
|
||||
scope = public;
|
||||
|
||||
scope = 2;
|
||||
picture = "\dayz_weapons\textures\equip_chem_blue_ca.paa";
|
||||
model = "\dayz_weapons\models\chem_gear_blue";
|
||||
displayName = $STR_MAG_NAME_7;
|
||||
descriptionShort = $STR_MAG_DESC_5;
|
||||
|
||||
descriptionShort = $STR_MAG_DESC_5;
|
||||
ammo = "ChemBlue";
|
||||
count = 10;
|
||||
|
||||
@@ -44,13 +40,11 @@ class HandChemBlue : HandGrenade
|
||||
|
||||
class HandChemGreen : HandGrenade
|
||||
{
|
||||
scope = public;
|
||||
|
||||
scope = 2;
|
||||
picture = "\dayz_weapons\textures\equip_chem_green_ca.paa";
|
||||
model = "\dayz_weapons\models\chem_gear_green";
|
||||
displayName = $STR_MAG_NAME_5;
|
||||
descriptionShort = $STR_MAG_DESC_5;
|
||||
|
||||
descriptionShort = $STR_MAG_DESC_5;
|
||||
ammo = "ChemGreen";
|
||||
count = 10;
|
||||
|
||||
@@ -66,13 +60,11 @@ class HandChemGreen : HandGrenade
|
||||
|
||||
class HandChemRed : HandGrenade
|
||||
{
|
||||
scope = public;
|
||||
|
||||
scope = 2;
|
||||
picture = "\dayz_weapons\textures\equip_chem_red_ca.paa";
|
||||
model = "\dayz_weapons\models\chem_gear_red";
|
||||
displayName = $STR_MAG_NAME_6;
|
||||
descriptionShort = $STR_MAG_DESC_5;
|
||||
|
||||
descriptionShort = $STR_MAG_DESC_5;
|
||||
ammo = "ChemRed";
|
||||
count = 10;
|
||||
|
||||
|
||||
@@ -1,63 +1,70 @@
|
||||
class ItemTopaz : CA_Magazine {
|
||||
scope = public;
|
||||
class ItemTopaz : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
displayName = $STR_GEM_NAME_TOPAZ;
|
||||
model = "\z\addons\dayz_epoch\models\topaz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_topaz_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
type = 256;
|
||||
descriptionShort = $STR_GEM_NAME_TOPAZ;
|
||||
};
|
||||
class ItemObsidian : CA_Magazine {
|
||||
scope = public;
|
||||
class ItemObsidian : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
displayName = $STR_GEM_NAME_OBSIDIAN;
|
||||
model = "\z\addons\dayz_epoch\models\obsidian.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_obsidian_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
type = 256;
|
||||
descriptionShort = $STR_GEM_NAME_OBSIDIAN;
|
||||
};
|
||||
class ItemSapphire : CA_Magazine {
|
||||
scope = public;
|
||||
class ItemSapphire : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
displayName = $STR_GEM_NAME_SAPPHIRE;
|
||||
model = "\z\addons\dayz_epoch\models\sapphire.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_sapphire_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
type = 256;
|
||||
descriptionShort = $STR_GEM_NAME_SAPPHIRE;
|
||||
};
|
||||
class ItemAmethyst : CA_Magazine {
|
||||
scope = public;
|
||||
class ItemAmethyst : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
displayName = $STR_GEM_NAME_AMETHYST;
|
||||
model = "\z\addons\dayz_epoch\models\amethyst.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_amethyst_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
type = 256;
|
||||
descriptionShort = $STR_GEM_NAME_AMETHYST;
|
||||
};
|
||||
class ItemEmerald : CA_Magazine {
|
||||
scope = public;
|
||||
class ItemEmerald : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
displayName = $STR_GEM_NAME_EMERALD;
|
||||
model = "\z\addons\dayz_epoch\models\emerald.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_emerald_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
type = 256;
|
||||
descriptionShort = $STR_GEM_NAME_EMERALD;
|
||||
};
|
||||
class ItemCitrine : CA_Magazine {
|
||||
scope = public;
|
||||
class ItemCitrine : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
displayName = $STR_GEM_NAME_CITRINE;
|
||||
model = "\z\addons\dayz_epoch\models\citrine.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_citrine_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
type = 256;
|
||||
descriptionShort = $STR_GEM_NAME_CITRINE;
|
||||
};
|
||||
class ItemRuby : CA_Magazine {
|
||||
scope = public;
|
||||
class ItemRuby : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
displayName = $STR_GEM_NAME_RUBY;
|
||||
model = "\z\addons\dayz_epoch\models\ruby.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_ruby_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
type = 256;
|
||||
descriptionShort = $STR_GEM_NAME_RUBY;
|
||||
};
|
||||
@@ -1,19 +1,17 @@
|
||||
class ItemComboLock: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_COMBINATIONLOCK;
|
||||
weight = 0.5;
|
||||
model = "\z\addons\dayz_epoch\models\combo_lock_mag.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_combolock_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_COMBINATIONLOCK_DESC;
|
||||
};
|
||||
|
||||
|
||||
class ItemPadlock: CA_Magazine //Vanilla lock, left in config for potential admin use, but all scripts changed to use Epoch ItemComboLock
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemPadlock;//"Padlock"
|
||||
|
||||
@@ -1,15 +1,17 @@
|
||||
class PartGeneric : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
type = 256;
|
||||
model = "\dayz_equip\models\genericparts.p3d";
|
||||
picture = "\dayz_equip\textures\equip_genericparts_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_10;
|
||||
descriptionShort = $STR_EQUIP_DESC_10;
|
||||
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_213;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"fire"};
|
||||
@@ -17,7 +19,8 @@ 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;";
|
||||
neednearby[] = {"fire"};
|
||||
@@ -30,7 +33,7 @@ class PartGeneric : CA_Magazine
|
||||
|
||||
class ItemPole: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_METALPOLE;
|
||||
@@ -90,8 +93,9 @@ class ItemMetalSheet: CA_Magazine
|
||||
descriptionShort = $STR_BLD_desc_ItemMetalSheet;//"Metal Sheeting"
|
||||
};
|
||||
|
||||
class equip_metal_sheet : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_metal_sheet : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_metal_sheet;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_metal_sheet;
|
||||
@@ -100,8 +104,9 @@ class equip_metal_sheet : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_metal_sheet_rusted : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_metal_sheet_rusted : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_metal_sheet_rusted;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_metal_sheet_rusted;
|
||||
@@ -121,8 +126,9 @@ class ItemRSJ: CA_Magazine
|
||||
descriptionShort = $STR_BLD_desc_ItemRSJ;//"Steel RSJ Support Beam"
|
||||
};
|
||||
|
||||
class equip_1inch_metal_pipe : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_1inch_metal_pipe : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_1inch_metal_pipe;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_1inch_metal_pipe;
|
||||
@@ -131,8 +137,9 @@ class equip_1inch_metal_pipe : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_2inch_metal_pipe : CA_Magazine {
|
||||
scope = public;
|
||||
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;
|
||||
@@ -141,8 +148,9 @@ class equip_2inch_metal_pipe : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_tent_poles : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_tent_poles : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_tent_poles;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_tent_poles;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
class ItemZombieParts: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_ZOMBIEPARTS;
|
||||
@@ -9,23 +9,22 @@ class ItemZombieParts: CA_Magazine
|
||||
descriptionShort = $STR_EPOCH_ZOMBIEPARTS_DESC;
|
||||
};
|
||||
|
||||
class ItemHotwireKit: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemHotwireKit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_HOTWIREKIT;
|
||||
model = "\z\addons\dayz_epoch\models\hotwire.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_hotwire_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_HOTWIREKIT_DESC;
|
||||
weight = 2;
|
||||
};
|
||||
|
||||
class ItemCards : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
type = 256;
|
||||
model = "z\addons\dayz_communityassets\models\cards.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_cards_ca.paa";
|
||||
displayName = $STR_ITEM_NAME_CARDS;
|
||||
@@ -34,10 +33,9 @@ class ItemCards : CA_Magazine
|
||||
|
||||
class ItemKosmosSmokes : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
type = 256;
|
||||
model = "\z\addons\dayz_communityassets\models\smokes_kosmos.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_kosmos_ca.paa";
|
||||
displayName = $STR_ITEM_NAME_KOSMOS_SMOKES;
|
||||
@@ -46,18 +44,18 @@ class ItemKosmosSmokes : CA_Magazine
|
||||
|
||||
class ItemKosmosSmokesOpen : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
type = 256;
|
||||
model = "\z\addons\dayz_communityassets\models\smokes_open_k.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_smokes_open_k_ca.paa";
|
||||
displayName = $STR_ITEM_NAME_KOSMOS_SMOKES;
|
||||
descriptionShort = $STR_ITEM_DESC_KOSMOS_SMOKES_OPENED;
|
||||
};
|
||||
|
||||
class equip_nails : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_nails : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_nails;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_nails;
|
||||
@@ -77,8 +75,9 @@ class ItemScrews: CA_Magazine
|
||||
descriptionShort = $STR_BLD_desc_ItemScrews;//"Box of screws"
|
||||
};
|
||||
|
||||
class equip_duct_tape : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_duct_tape : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_duct_tape;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_duct_tape;
|
||||
@@ -87,8 +86,9 @@ class equip_duct_tape : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_feathers : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_feathers : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_feathers;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_feathers;
|
||||
@@ -97,8 +97,9 @@ class equip_feathers : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_pvc_box : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_pvc_box : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_pvc_box;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_pvc_box;
|
||||
@@ -107,8 +108,9 @@ class equip_pvc_box : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_hobo_fishing_kit : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_hobo_fishing_kit : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = "Hobo Fishing Kit";
|
||||
descriptionShort = "Hobo Fishing Kit, catches dem fishes";
|
||||
@@ -117,8 +119,9 @@ class equip_hobo_fishing_kit : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_hose : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_hose : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_hose;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_hose;
|
||||
@@ -127,8 +130,9 @@ class equip_hose : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_hose_clamp : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_hose_clamp : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_hose_clamp;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_hose_clamp;
|
||||
@@ -137,8 +141,9 @@ class equip_hose_clamp : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class Item_coni : CA_Magazine {
|
||||
scope = public;
|
||||
class Item_coni : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_DESC_equip_con_i;
|
||||
descriptionShort = $STR_ITEM_NAME_equip_con_i;
|
||||
@@ -147,8 +152,9 @@ class Item_coni : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class Item_Connector_I : CA_Magazine {
|
||||
scope = public;
|
||||
class Item_Connector_I : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_DESC_equip_con_i;
|
||||
descriptionShort = $STR_ITEM_NAME_equip_con_i;
|
||||
@@ -157,8 +163,9 @@ class Item_Connector_I : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class Item_Connector_L : CA_Magazine {
|
||||
scope = public;
|
||||
class Item_Connector_L : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_DESC_equip_con_l;
|
||||
descriptionShort = $STR_ITEM_NAME_equip_con_l;
|
||||
@@ -167,8 +174,9 @@ class Item_Connector_L : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class Item_Connector_T : CA_Magazine {
|
||||
scope = public;
|
||||
class Item_Connector_T : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_DESC_equip_con_t;
|
||||
descriptionShort = $STR_ITEM_NAME_equip_con_t;
|
||||
@@ -177,8 +185,9 @@ class Item_Connector_T : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_tin_powder : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_tin_powder : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = "Tin of Powder";
|
||||
descriptionShort = "Tin of Powder has medicinal qualities";
|
||||
@@ -187,8 +196,9 @@ class equip_tin_powder : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_slugsinacan : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_slugsinacan : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = "Slugs in a can";
|
||||
descriptionShort = "Slugs in a can";
|
||||
@@ -198,8 +208,9 @@ class equip_slugsinacan : CA_Magazine {
|
||||
};
|
||||
|
||||
//No models
|
||||
class equip_cable_tie : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_cable_tie : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_cable_tie;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_cable_tie;
|
||||
@@ -207,8 +218,9 @@ class equip_cable_tie : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_needle : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_needle : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_needle;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_needle;
|
||||
@@ -216,8 +228,9 @@ class equip_needle : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_laser : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_laser : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_laser;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_laser;
|
||||
@@ -225,8 +238,9 @@ class equip_laser : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_weapon_rails: CA_Magazine {
|
||||
scope = public;
|
||||
class equip_weapon_rails: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_weapon_rails;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_weapon_rails;
|
||||
@@ -234,11 +248,12 @@ class equip_weapon_rails: CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_rail_screws : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_rail_screws : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_rail_screws;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_rail_screws;
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_part_somegeneric.paa";
|
||||
type = 256;
|
||||
};
|
||||
};
|
||||
@@ -1,5 +1,6 @@
|
||||
class equip_empty_barrel : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_empty_barrel : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_empty_barrel;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_empty_barrel;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class equip_fuse : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_fuse : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_fuse;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_fuse;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class equip_part_camo : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_part_camo : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_part_camo;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_part_camo;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class equip_part_silencer : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_part_silencer : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_part_silencer;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_part_silencer;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class equip_part_sniper_scope : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_part_sniper_scope : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ATTACHMENT_NAME_Sniper_Scope;
|
||||
descriptionShort = $STR_ATTACHMENT_DESC_Sniper_Scope;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class equip_pipecap : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_pipecap : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_pipecap;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_pipecap;
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class equip_rubber_tube : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_rubber_tube : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_rubber_tube;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_rubber_tube;
|
||||
|
||||
@@ -1,14 +1,17 @@
|
||||
class PartOre: CA_Magazine {
|
||||
scope = public;
|
||||
class PartOre: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ORE_NAME_IRON;
|
||||
model = "\z\addons\dayz_epoch\models\iron_ore.p3d";
|
||||
picture="\z\addons\dayz_epoch\pictures\equip_iron_ore_CA.paa";
|
||||
descriptionShort = $STR_ORE_NAME_IRON_DESC;
|
||||
weight = 1;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_265;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"fire"};
|
||||
@@ -18,17 +21,20 @@ class PartOre: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class PartOreSilver: CA_Magazine {
|
||||
scope = public;
|
||||
class PartOreSilver: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ORE_NAME_SILVER;
|
||||
model = "\z\addons\dayz_epoch\models\silver_ore.p3d";
|
||||
picture="\z\addons\dayz_epoch\pictures\equip_silver_ore_CA.paa";
|
||||
descriptionShort = $STR_ORE_DESC;
|
||||
weight = 1;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_266;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"fire"};
|
||||
@@ -38,17 +44,20 @@ class PartOreSilver: CA_Magazine {
|
||||
};
|
||||
};
|
||||
};
|
||||
class PartOreGold: CA_Magazine {
|
||||
scope = public;
|
||||
class PartOreGold: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ORE_NAME_GOLD;
|
||||
model = "\z\addons\dayz_epoch\models\gold_ore.p3d";
|
||||
picture="\z\addons\dayz_epoch\pictures\equip_gold_ore_CA.paa";
|
||||
descriptionShort = $STR_ORE_DESC;
|
||||
weight = 1;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_267;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"fire"};
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class equip_paint : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_paint : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_paint;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_paint;
|
||||
@@ -7,48 +8,54 @@ class equip_paint : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_paint_generic : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_paint_generic : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
picture = "\dayz_epoch_c\icons\equipment\equip_paint_generic.paa";
|
||||
displayName = $STR_DZE_EQUIP_PAINT_GENERIC_NAME;
|
||||
descriptionShort = $STR_DZE_EQUIP_PAINT_GENERIC_DESC;
|
||||
};
|
||||
class equip_paint_black : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_paint_black : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
picture = "\dayz_epoch_c\icons\equipment\equip_paint_black.paa";
|
||||
displayName = $STR_DZE_EQUIP_PAINT_BLACK_NAME;
|
||||
descriptionShort = $STR_DZE_EQUIP_PAINT_BLACK_DESC;
|
||||
};
|
||||
class equip_paint_white : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_paint_white : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
picture = "\dayz_epoch_c\icons\equipment\equip_paint_white.paa";
|
||||
displayName = $STR_DZE_EQUIP_PAINT_WHITE_NAME;
|
||||
descriptionShort = $STR_DZE_EQUIP_PAINT_WHITE_DESC;
|
||||
};
|
||||
class equip_paint_blue : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_paint_blue : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
picture = "\dayz_epoch_c\icons\equipment\equip_paint_blue.paa";
|
||||
displayName = $STR_DZE_EQUIP_PAINT_BLUE_NAME;
|
||||
descriptionShort = $STR_DZE_EQUIP_PAINT_BLUE_DESC;
|
||||
};
|
||||
class equip_paint_green : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_paint_green : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
picture = "\dayz_epoch_c\icons\equipment\equip_paint_green.paa";
|
||||
displayName = $STR_DZE_EQUIP_PAINT_GREEN_NAME;
|
||||
descriptionShort = $STR_DZE_EQUIP_PAINT_GREEN_DESC;
|
||||
};
|
||||
class equip_paint_red : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_paint_red : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
picture = "\dayz_epoch_c\icons\equipment\equip_paint_red.paa";
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
class ItemFertilizer: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemFertilizer: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_CRAFT_NAME_FERTILIZER;
|
||||
descriptionShort = $STR_CRAFT_DESC_FERTILIZER;
|
||||
@@ -8,15 +9,18 @@ class ItemFertilizer: CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class ItemPumpkinSeed: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemPumpkinSeed: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_CRAFT_NAME_PUMPKIN_SEED;
|
||||
descriptionShort = $STR_CRAFT_DESC_PUMPKIN_SEED;
|
||||
model = "\z\addons\dayz_epoch\models\doc_child1.p3d"; // TODO: model + icon
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_child1_ca.paa";
|
||||
type = 256;
|
||||
class ItemActions {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_CRAFT_PUMPKIN_PLANT;
|
||||
@@ -29,16 +33,20 @@ class ItemPumpkinSeed: CA_Magazine {
|
||||
};
|
||||
};
|
||||
|
||||
class ItemPumpkinPlant: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemPumpkinPlant: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_CRAFT_NAME_PUMPKIN_PLANT;
|
||||
descriptionShort = $STR_CRAFT_DESC_PUMPKIN_PLANT;
|
||||
model = "\z\addons\dayz_epoch\models\doc_child1.p3d"; // TODO: model + icon
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_child1_ca.paa";
|
||||
type = 256;
|
||||
class ItemActions {
|
||||
class Build {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_CRAFT_PLANT_PUMPKIN_PLANT;
|
||||
buildText = $STR_CRAFT_NAME_PUMPKIN_PLANT;
|
||||
script = "spawn player_build;";
|
||||
@@ -48,15 +56,18 @@ class ItemPumpkinPlant: CA_Magazine {
|
||||
};
|
||||
};
|
||||
|
||||
class ItemHempSeed: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemHempSeed: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_CRAFT_NAME_HEMP_SEED;
|
||||
descriptionShort = $STR_CRAFT_DESC_HEMP_SEED;
|
||||
model = "\z\addons\dayz_epoch\models\doc_child2.p3d"; // TODO: model + icon
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_child2_ca.paa";
|
||||
type = 256;
|
||||
class ItemActions {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_CRAFT_HEMP_PLANT;
|
||||
@@ -69,16 +80,20 @@ class ItemHempSeed: CA_Magazine {
|
||||
};
|
||||
};
|
||||
|
||||
class ItemHempPlant: CA_Magazine {
|
||||
scope = public;
|
||||
class ItemHempPlant: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_CRAFT_NAME_HEMP_PLANT;
|
||||
descriptionShort = $STR_CRAFT_DESC_HEMP_PLANT;
|
||||
model = "\z\addons\dayz_epoch\models\doc_child2.p3d"; // TODO: model + icon
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_child2_ca.paa";
|
||||
type = 256;
|
||||
class ItemActions {
|
||||
class Build {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_CRAFT_PLANT_HEMP_PLANT;
|
||||
buildText = $STR_CRAFT_NAME_HEMP_PLANT;
|
||||
script = "spawn player_build;";
|
||||
@@ -90,13 +105,14 @@ class ItemHempPlant: CA_Magazine {
|
||||
|
||||
class ItemKiloHemp : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_EPOCH_KILOOFHEMP;
|
||||
descriptionShort = $STR_EPOCH_KILOOFHEMP_DESC;
|
||||
model = "z\addons\dayz_epoch\models\kilohemp.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_kilohemp_CA.paa";
|
||||
type = 256;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
@@ -122,7 +138,7 @@ class ItemKiloHemp : CA_Magazine
|
||||
|
||||
class ItemKiloTobacco : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_EPOCH_KILOTOBACCO;
|
||||
descriptionShort = $STR_EPOCH_KILOTOBACCO_DESC;
|
||||
@@ -131,15 +147,20 @@ class ItemKiloTobacco : CA_Magazine
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class ItemKiloBlackTea : ItemKiloTobacco
|
||||
class ItemKiloBlackTea : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_EPOCH_KILOBLACKTEA;
|
||||
descriptionShort = $STR_EPOCH_KILOBLACKTEA_DESC;
|
||||
model = "z\addons\dayz_epoch\models\kilohemp.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_kilohemp_CA.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class ItemTobaccoLeafs : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_EPOCH_TOBACCO_LEAF;
|
||||
descriptionShort = $STR_EPOCH_TOBACCO_LEAF_DESC;
|
||||
@@ -148,8 +169,9 @@ class ItemTobaccoLeafs : CA_Magazine
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_comfreyleafs : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_comfreyleafs : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_comfreyleafs;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_comfreyleafs;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
class ItemCanvas: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CANVAS;
|
||||
@@ -42,7 +42,7 @@ class ItemCanvas: CA_Magazine
|
||||
|
||||
class ItemBurlap: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_BURLAP;
|
||||
@@ -64,8 +64,9 @@ class ItemBurlap: CA_Magazine
|
||||
};
|
||||
};
|
||||
|
||||
class equip_rag : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_rag : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_rag;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_rag;
|
||||
@@ -88,8 +89,9 @@ class equip_rag : CA_Magazine {
|
||||
};
|
||||
};
|
||||
|
||||
class equip_string : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_string : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_string;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_string;
|
||||
@@ -148,8 +150,9 @@ class equip_string : CA_Magazine {
|
||||
};
|
||||
};
|
||||
|
||||
class equip_rope : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_rope : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_rope;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_rope;
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
class equip_lever : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
type = 256;
|
||||
picture = "\dayz_equip\textures\equip_lever.paa";
|
||||
model = "\z\addons\dayz_epoch_w\magazine\dze_handle.p3d";
|
||||
descriptionShort = $STR_EQUIP_DESC_LEVER;
|
||||
@@ -11,7 +11,7 @@ class equip_lever : CA_Magazine
|
||||
|
||||
class ItemSledgeHead : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_SLEDGEHAMMERHEAD;
|
||||
@@ -36,7 +36,7 @@ class ItemSledgeHead : CA_Magazine
|
||||
|
||||
class ItemSledgeHandle : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_SLEDGEHAMMERHANDLE;
|
||||
@@ -61,7 +61,7 @@ class ItemSledgeHandle : CA_Magazine
|
||||
|
||||
class equip_Crossbow_Kit : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_CROSSBOW_KIT;
|
||||
descriptionShort = $STR_ITEM_DESC_CROSSBOW_KIT;
|
||||
@@ -86,7 +86,7 @@ class equip_Crossbow_Kit : CA_Magazine
|
||||
|
||||
class equip_crossbow_stock : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_CROSSBOW_STOCK;
|
||||
descriptionShort = $STR_ITEM_DESC_CROSSBOW_STOCK;
|
||||
|
||||
@@ -1,15 +1,17 @@
|
||||
class PartFueltank : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
type = 256;
|
||||
model = "\dayz_equip\models\fueltank.p3d";
|
||||
picture = "\dayz_equip\textures\equip_fueltank_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_8;
|
||||
descriptionShort = $STR_EQUIP_DESC_8;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_212;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
@@ -22,10 +24,9 @@ class PartFueltank : CA_Magazine
|
||||
|
||||
class PartWheel : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
type = 256;
|
||||
model = "\dayz_equip\models\wheel.p3d";
|
||||
picture = "\dayz_equip\textures\equip_wheel_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_9;
|
||||
@@ -34,15 +35,16 @@ class PartWheel : CA_Magazine
|
||||
|
||||
class PartEngine : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
type = 256;
|
||||
model = "\dayz_equip\models\engine.p3d";
|
||||
picture = "\dayz_equip\textures\equip_engine_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_11;
|
||||
descriptionShort = $STR_EQUIP_DESC_11;
|
||||
class ItemActions {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_212;
|
||||
@@ -57,15 +59,16 @@ class PartEngine : CA_Magazine
|
||||
|
||||
class PartVRotor : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
type = 256;
|
||||
model = "\dayz_equip\models\vrotor.p3d";
|
||||
picture = "\dayz_equip\textures\equip_vrotor_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_32;
|
||||
descriptionShort = $STR_EQUIP_DESC_32;
|
||||
class ItemActions {
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_212;
|
||||
@@ -80,14 +83,13 @@ class PartVRotor : CA_Magazine
|
||||
|
||||
class PartGlass : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
type = 256;
|
||||
model = "\dayz_equip\models\carglass.p3d";
|
||||
picture = "\dayz_equip\textures\equip_carglass_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_30;
|
||||
descriptionShort = $STR_EQUIP_DESC_30;
|
||||
};
|
||||
|
||||
// PartGeneric can be found under Items\Metal.hpp
|
||||
// PartGeneric can be found under Items\Metal.hpp
|
||||
@@ -1,8 +1,8 @@
|
||||
class ItemLog : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemLog;//"Wooden Log"
|
||||
picture = "\z\addons\dayz_buildings\equip\item_log.paa";
|
||||
model = "z\addons\dayz_buildings\models\logs.p3d";
|
||||
@@ -10,7 +10,8 @@ class ItemLog : CA_Magazine
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build {
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTIONS_MAKEFIRE;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemMatchbox"};
|
||||
@@ -48,9 +49,9 @@ class ItemLog : CA_Magazine
|
||||
|
||||
class ItemPlank : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemPlank;//"Sawn Planks"
|
||||
picture = "\z\addons\dayz_buildings\equip\item_plank.paa";
|
||||
model = "z\addons\dayz_buildings\models\planks.p3d";
|
||||
@@ -81,16 +82,18 @@ class ItemPlank : CA_Magazine
|
||||
|
||||
class PartWoodPile : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
type = 256;
|
||||
|
||||
model = "\dayz_equip\models\woodPile.p3d";
|
||||
picture = "\dayz_equip\textures\equip_woodPile_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_40;
|
||||
descriptionShort = $STR_EQUIP_DESC_40;
|
||||
class ItemActions {
|
||||
class Build {
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTIONS_MAKEFIRE;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemMatchbox"};
|
||||
@@ -139,14 +142,14 @@ class PartWoodPile : CA_Magazine
|
||||
|
||||
class PartPlankPack: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
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 = $STR_EPOCH_LUMBERPACK_DESC;
|
||||
weight = 6;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
@@ -163,14 +166,14 @@ class PartPlankPack: CA_Magazine
|
||||
|
||||
class PartPlywoodPack: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
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 = $STR_EPOCH_PLYWOODPACK_DESC;
|
||||
weight = 12;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
@@ -187,13 +190,14 @@ class PartPlywoodPack: CA_Magazine
|
||||
|
||||
class PartWoodLumber: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_LUMBER;
|
||||
model = "\z\addons\dayz_epoch\models\planks.p3d";
|
||||
picture= "\z\addons\dayz_epoch\pictures\equip_wood_planks_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_LUMBER_DESC;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
@@ -278,13 +282,14 @@ class PartWoodLumber: CA_Magazine
|
||||
|
||||
class PartWoodPlywood: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_PLYWOOD;
|
||||
model = "\z\addons\dayz_epoch\models\plywood.p3d";
|
||||
picture= "\z\addons\dayz_epoch\pictures\equip_plywood_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_PLYWOOD_DESC;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
@@ -344,8 +349,9 @@ class PartWoodPlywood: CA_Magazine
|
||||
};
|
||||
};
|
||||
|
||||
class equip_wood_pallet : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_wood_pallet : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_wood_pallet;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_wood_pallet;
|
||||
@@ -354,8 +360,9 @@ class equip_wood_pallet : CA_Magazine {
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_crate : CA_Magazine {
|
||||
scope = public;
|
||||
class equip_crate : CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_crate;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_crate;
|
||||
|
||||
Reference in New Issue
Block a user