mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-15 21:29:59 +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,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[] = {};
|
||||
|
||||
Reference in New Issue
Block a user