mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-25 01:20:49 +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,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"};
|
||||
|
||||
Reference in New Issue
Block a user