mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-22 03:16:27 +03:00
Rearrange CfgMagazines
This commit rearranges the complete CfgMagazines structure. We no longer have seperated folders for DayZ Mod and Epoch. All items got merged and grouped together. Unused items got moved into a folder called Not used under items.
This commit is contained in:
168
SQF/dayz_code/Configs/CfgMagazines/Items/BarrelsCans.hpp
Normal file
168
SQF/dayz_code/Configs/CfgMagazines/Items/BarrelsCans.hpp
Normal file
@@ -0,0 +1,168 @@
|
||||
class ItemJerrycanEmpty : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\jerrycan.p3d";
|
||||
picture = "\dayz_equip\textures\equip_jerrycan_e_ca.paa";
|
||||
displayName = $STR_ITEM_NAME_JERRYCAN_EMPTY;
|
||||
descriptionShort = $STR_ITEM_DESC_JERRYCAN_EMPTY;
|
||||
|
||||
fuelQuantity = 0;
|
||||
fullcan = "ItemJerrycan";
|
||||
};
|
||||
|
||||
class ItemJerrycan : ItemJerrycanEmpty
|
||||
{
|
||||
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
|
||||
displayName = $STR_ITEM_NAME_JERRYCAN;
|
||||
descriptionShort = $STR_ITEM_DESC_JERRYCAN;
|
||||
|
||||
fuelQuantity = 20;
|
||||
containerEmpty = "ItemJerrycanEmpty";
|
||||
|
||||
//used for tent burning
|
||||
fireIntensity = 6;
|
||||
|
||||
class ItemActions {
|
||||
class Empty {
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemFuelcanEmpty : ItemJerrycanEmpty
|
||||
{
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "z\addons\dayz_communityassets\models\fuelcan.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_fuelcan_empty_CA.paa";
|
||||
displayName = $STR_ITEM_NAME_FUELCAN_EMPTY;
|
||||
descriptionShort = $STR_ITEM_DESC_FUELCAN_EMPTY;
|
||||
|
||||
fuelQuantity = 0;
|
||||
fullcan = "ItemFuelcan";
|
||||
};
|
||||
|
||||
class ItemFuelcan : ItemFuelcanEmpty
|
||||
{
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_fuelcan_CA.paa";
|
||||
displayName = $STR_ITEM_NAME_FUELCAN;
|
||||
descriptionShort = $STR_ITEM_DESC_FUELCAN;
|
||||
|
||||
fuelQuantity = 5;
|
||||
containerEmpty = "ItemFuelcanEmpty";
|
||||
|
||||
//used for tent burning
|
||||
fireIntensity = 4;
|
||||
|
||||
class ItemActions {
|
||||
class Empty {
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemFuelBarrel: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
fuelQuantity = 210;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_FUELBARREL;
|
||||
model = "\z\addons\dayz_epoch\models\oil_drum_model.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_FUELBARREL_DESC;
|
||||
fireIntensity = 6; //used for tent burning
|
||||
containerEmpty = "ItemFuelBarrelEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Empty {
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemFuelBarrelEmpty: ItemFuelBarrel
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
fuelQuantity = 0;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_EMPTYFUELBARREL;
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_oildrum_e_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_EMPTYFUELBARREL_DESC;
|
||||
fullcan = "ItemFuelBarrel";
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_276;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox","ItemMatchbox"};
|
||||
output[] = {{"ItemFireBarrel_kit",1}};
|
||||
input[] = {{"ItemFuelBarrelEmpty",1},{"ItemJerryCan",1},{"PartWoodPile",4}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemOilBarrel: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
// fuelQuantity = 210;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_OILBARREL;
|
||||
model = "\z\addons\dayz_epoch\models\oil_drum_model.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_oil_drum_model_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_OILBARREL_DESC;
|
||||
containerEmpty = "ItemOilBarrelEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Empty {
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemOilBarrelEmpty : ItemOilBarrel
|
||||
{
|
||||
displayName = $STR_EPOCH_EMPTYOILBARREL;
|
||||
descriptionShort = $STR_EPOCH_EMPTYOILBARREL_DESC;
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_oildrum_e_CA.paa";
|
||||
};
|
||||
|
||||
class ItemMethylaminBarrelEmpty : ItemOilBarrel
|
||||
{
|
||||
displayName = $STR_EPOCH_EMPTYMETHYLAMINEBARREL;
|
||||
descriptionShort = $STR_EPOCH_EMPTYMETHYLAMINEBARREL_DESC;
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_oildrum_e_CA.paa";
|
||||
};
|
||||
|
||||
class ItemMethylaminBarrel : ItemOilBarrel
|
||||
{
|
||||
displayName = $STR_EPOCH_METHYLAMINEBARREL;
|
||||
descriptionShort = $STR_EPOCH_METHYLAMINEBARREL_DESC;
|
||||
containerEmpty = "ItemMethylaminBarrelEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Empty {
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class equip_empty_barrel : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_empty_barrel;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_empty_barrel;
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_empty_barrel.paa";
|
||||
type = 256;
|
||||
};
|
||||
@@ -1,57 +0,0 @@
|
||||
class TrapBear : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\bear_trap_gear.p3d";
|
||||
picture = "\dayz_equip\textures\equip_bear_trap_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_BEARTRAP;
|
||||
descriptionShort = $STR_EQUIP_DESC_BEARTRAP;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTION_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"TrapBear"};
|
||||
create = "BearTrap_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemTrapBearTrapFlare : TrapBear
|
||||
{
|
||||
model = "z\addons\dayz_communityassets\models\trap_beartrap_dropped_flare.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_trap_beartrap_dropped_flare.paa";
|
||||
displayName = $STR_ITEM_NAME_BEAR_TRAP_FLARE;
|
||||
descriptionShort = $STR_ITEM_DESC_BEAR_TRAP_FLARE;
|
||||
|
||||
class ItemActions : ItemActions
|
||||
{
|
||||
class Build : Build
|
||||
{
|
||||
consume[] = {"ItemTrapBearTrapFlare"};
|
||||
create = "TrapBearTrapFlare";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemTrapBearTrapSmoke : TrapBear
|
||||
{
|
||||
model = "z\addons\dayz_communityassets\models\trap_beartrap_dropped_smoke.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_trap_beartrap_dropped_smoke.paa";
|
||||
displayName = $STR_ITEM_NAME_BEAR_TRAP_SMOKE;
|
||||
descriptionShort = $STR_ITEM_DESC_BEAR_TRAP_SMOKE;
|
||||
|
||||
class ItemActions : ItemActions
|
||||
{
|
||||
class Build : Build
|
||||
{
|
||||
consume[] = {"ItemTrapBearTrapSmoke"};
|
||||
create = "TrapBearTrapSmoke";
|
||||
};
|
||||
};
|
||||
};
|
||||
327
SQF/dayz_code/Configs/CfgMagazines/Items/Bulk.hpp
Normal file
327
SQF/dayz_code/Configs/CfgMagazines/Items/Bulk.hpp
Normal file
@@ -0,0 +1,327 @@
|
||||
class bulk: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_BULK_NAME;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC;
|
||||
weight = 5;
|
||||
};
|
||||
class bulk_empty: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_EMPTY;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_EMPTY;
|
||||
weight = 5;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_221;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"bulk_ItemSodaCoke",1}};
|
||||
input[] = {{"bulk_empty",1},{"ItemSodaCoke",6}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_222;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"bulk_ItemSodaPepsi",1}};
|
||||
input[] = {{"bulk_empty",1},{"ItemSodaPepsi",6}};
|
||||
};
|
||||
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_223;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"bulk_PartGenericHalf",1}};
|
||||
input[] = {{"bulk_empty",1},{"PartGeneric",6}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_224;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"bulk_ItemTankTrapHalf",1}};
|
||||
input[] = {{"bulk_empty",1},{"ItemTankTrap",6}};
|
||||
};
|
||||
class Crafting4 {
|
||||
text = $STR_EPOCH_PLAYER_225;
|
||||
script = ";['Crafting4','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"bulk_ItemWireHalf",1}};
|
||||
input[] = {{"bulk_empty",1},{"ItemWire",6}};
|
||||
};
|
||||
class Crafting5 {
|
||||
text = $STR_EPOCH_PLAYER_226;
|
||||
script = ";['Crafting5','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"bulk_FoodbaconCooked",1}};
|
||||
input[] = {{"bulk_empty",1},{"FoodbaconCooked",6}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class bulk_ItemSodaCoke: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_SODACOKE_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SODACOKE_HALF;
|
||||
weight = 6;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemSodaCoke",6,"magazine"};
|
||||
};
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_221;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"bulk_ItemSodaCokeFull",1}};
|
||||
input[] = {{"bulk_ItemSodaCoke",1},{"ItemSodaCoke",6}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_ItemSodaCokeFull: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_SODACOKE_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SODACOKE_FULL;
|
||||
weight = 7;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemSodaCoke",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class bulk_ItemSodaPepsi: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_SODAPEPSI_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SODAPEPSI_HALF;
|
||||
weight = 6;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemSodaPepsi",6,"magazine"};
|
||||
};
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_222;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"bulk_ItemSodaPepsiFull",1}};
|
||||
input[] = {{"bulk_ItemSodaPepsi",1},{"ItemSodaPepsi",6}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_ItemSodaPepsiFull: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_SODAPEPSI_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SODAPEPSI_FULL;
|
||||
weight = 7;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemSodaPepsi",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class bulk_FoodbaconCooked: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_BACON_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_BACON_HALF;
|
||||
weight = 5;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"FoodbaconCooked",6,"magazine"};
|
||||
};
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_227;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"bulk_FoodbaconCookedFull",1}};
|
||||
input[] = {{"bulk_FoodbaconCooked",1},{"FoodbaconCooked",6}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_FoodbaconCookedFull: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_BACON_FULL;
|
||||
descriptionshort = $STR_EPOCH_BULK_DESC_BACON_FULL;
|
||||
weight = 5;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"FoodbaconCooked",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
// Ammo
|
||||
class bulk_17Rnd_9x19_glock17: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_G17;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_G17;
|
||||
weight = 17;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"17Rnd_9x19_glock17",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_15Rnd_9x19_M9SD: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_M9SD;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_M9SD;
|
||||
weight = 17;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"15Rnd_9x19_M9SD",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_30Rnd_9x19_MP5SD: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_MP5SD;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_MP5SD;
|
||||
weight = 18;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"30Rnd_9x19_MP5SD",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_30Rnd_556x45_StanagSD: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_STANAGSD;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_STANAGSD;
|
||||
weight = 20;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"30Rnd_556x45_StanagSD",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class bulk_ItemSandbag: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_SANDBAG;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_SANDBAG;
|
||||
weight = 60;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemSandbag",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class bulk_ItemTankTrap: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_TANKTRAP_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_TANKTRAP_FULL;
|
||||
weight = 25;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemTankTrap",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_ItemTankTrapHalf: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_TANKTRAP_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_TANKTRAP_HALF;
|
||||
weight = 12.5;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemTankTrap",6,"magazine"};
|
||||
};
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_224;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"bulk_ItemTankTrap",1}};
|
||||
input[] = {{"bulk_ItemTankTrapHalf",1},{"ItemTankTrap",6}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class bulk_ItemWire: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_WIREKIT_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_WIREKIT_FULL;
|
||||
weight = 25;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemWire",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_ItemWireHalf: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_WIREKIT_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_WIREKIT_HALF;
|
||||
weight = 12.5;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"ItemWire",6,"magazine"};
|
||||
};
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_225;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"bulk_ItemWire",1}};
|
||||
input[] = {{"bulk_ItemWireHalf",1},{"ItemWire",6}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class bulk_PartGeneric: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_GENERIC_FULL;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_GENERIC_FULL;
|
||||
weight = 60;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"PartGeneric",12,"magazine"};
|
||||
};
|
||||
};
|
||||
};
|
||||
class bulk_PartGenericHalf: bulk {
|
||||
displayName = $STR_EPOCH_BULK_DISP_GENERIC_HALF;
|
||||
descriptionShort = $STR_EPOCH_BULK_DESC_GENERIC_HALF;
|
||||
weight = 30;
|
||||
class ItemActions {
|
||||
class CreateMags {
|
||||
text = $STR_EPOCH_ACTIONS_OPEN;
|
||||
script = "spawn player_loadCrate;";
|
||||
output[] = {"PartGeneric",6,"magazine"};
|
||||
};
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_223;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"bulk_PartGeneric",1}};
|
||||
input[] = {{"bulk_PartGenericHalf",1},{"PartGeneric",6}};
|
||||
};
|
||||
};
|
||||
};
|
||||
193
SQF/dayz_code/Configs/CfgMagazines/Items/ChainsawGas.hpp
Normal file
193
SQF/dayz_code/Configs/CfgMagazines/Items/ChainsawGas.hpp
Normal file
@@ -0,0 +1,193 @@
|
||||
// For Chainsaw
|
||||
class ItemMixOil : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_EPOCH_CHAINSAW_OIL;
|
||||
model = "\z\addons\dayz_epoch\models\oilmix.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_oilmix_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_EPOCH_CHAINSAW_OIL;
|
||||
sfx = "refuel";
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_CHAINSAW_MIXGAS_ACTION;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemJerryMixed",1}};
|
||||
input[] = {{"ItemMixOil",1},{"ItemJerrycan",1}};
|
||||
inputstrict = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
class CSGAS : CA_Magazine {
|
||||
scope = public;
|
||||
type = VSoft;
|
||||
displayName = $STR_EPOCH_CHAINSAW_GAS;
|
||||
descriptionShort = $STR_EPOCH_CHAINSAW_GAS_DESC;
|
||||
count = 1000;
|
||||
picture = "\CA\weapons\data\equip\m_m240_ca.paa";
|
||||
ammo = "Chainsaw_Swing_Ammo";
|
||||
|
||||
initSpeed = 100;
|
||||
maxLeadSpeed = 15;
|
||||
tracersEvery = 0;
|
||||
lastRoundsTracer = 0;
|
||||
|
||||
optics = false;
|
||||
distanceZoomMin = 0;
|
||||
distanceZoomMax = 0;
|
||||
|
||||
showEmpty = 0;
|
||||
autoReload = true;
|
||||
canLock = LockNo;
|
||||
|
||||
burst = 1;
|
||||
multiplier = 1;
|
||||
ffMagnitude = 0.1;
|
||||
ffFrequency = 1;
|
||||
ffCount = 1;
|
||||
|
||||
class HitEffects {
|
||||
hit_blood = "ImpactBlood";
|
||||
hit_concrete = "ImpactConcrete";
|
||||
hit_foliage = "ImpactWood";
|
||||
hit_foliage_green = "ImpactWood";
|
||||
hit_glass = "ImpactGlass";
|
||||
hit_glass_thin = "ImpactGlassThin";
|
||||
hit_metal = "ImpactMetal";
|
||||
hit_plaster = "ImpactPlaster";
|
||||
hit_rubber = "ImpactRubber";
|
||||
hit_wood = "ImpactWood";
|
||||
};
|
||||
};
|
||||
class ItemJerryMixed: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS20L_CAN;
|
||||
model = "\dayz_equip\models\jerrycan.p3d";
|
||||
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_CHAINSAW_MIXEDGAS20L_CAN_DESC;
|
||||
sfx = "refuel";
|
||||
containerEmpty = "ItemJerrycanEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox","ChainSaw"};
|
||||
output[] = {{"CSGAS",1},{"ItemJerryMixed4",1}};
|
||||
input[] = {{"ItemJerryMixed",1}};
|
||||
};
|
||||
class Empty {
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemJerryMixed4: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS16L_CAN;
|
||||
model = "\dayz_equip\models\jerrycan.p3d";
|
||||
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_CHAINSAW_MIXEDGAS16L_CAN_DESC;
|
||||
sfx = "refuel";
|
||||
containerEmpty = "ItemJerrycanEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox","ChainSaw"};
|
||||
output[] = {{"CSGAS",1},{"ItemJerryMixed3",1}};
|
||||
input[] = {{"ItemJerryMixed4",1}};
|
||||
};
|
||||
class Empty {
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemJerryMixed3: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS12L_CAN;
|
||||
model = "\dayz_equip\models\jerrycan.p3d";
|
||||
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_CHAINSAW_MIXEDGAS12L_CAN_DESC;
|
||||
sfx = "refuel";
|
||||
containerEmpty = "ItemJerrycanEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox","ChainSaw"};
|
||||
output[] = {{"CSGAS",1},{"ItemJerryMixed2",1}};
|
||||
input[] = {{"ItemJerryMixed3",1}};
|
||||
};
|
||||
class Empty {
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemJerryMixed2: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS8L_CAN;
|
||||
model = "\dayz_equip\models\jerrycan.p3d";
|
||||
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_CHAINSAW_MIXEDGAS8L_CAN_DESC;
|
||||
sfx = "refuel";
|
||||
containerEmpty = "ItemJerrycanEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox","ChainSaw"};
|
||||
output[] = {{"CSGAS",1},{"ItemJerryMixed1",1}};
|
||||
input[] = {{"ItemJerryMixed2",1}};
|
||||
};
|
||||
class Empty {
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemJerryMixed1: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CHAINSAW_MIXEDGAS4L_CAN;
|
||||
model = "\dayz_equip\models\jerrycan.p3d";
|
||||
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_CHAINSAW_MIXEDGAS4L_CAN;
|
||||
sfx = "refuel";
|
||||
containerEmpty = "ItemJerrycanEmpty";
|
||||
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_CHAINSAW_MIXEDGAS_CAN_ACTION;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox","ChainSaw"};
|
||||
output[] = {{"CSGAS",1},{"ItemJerrycanEmpty",1}};
|
||||
input[] = {{"ItemJerryMixed1",1}};
|
||||
};
|
||||
class Empty {
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
95
SQF/dayz_code/Configs/CfgMagazines/Items/Concrete.hpp
Normal file
95
SQF/dayz_code/Configs/CfgMagazines/Items/Concrete.hpp
Normal file
@@ -0,0 +1,95 @@
|
||||
class ItemStone: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemStone;//"Rough Stone"
|
||||
picture = "\z\addons\dayz_buildings\equip\rocks.paa";
|
||||
model = "z\addons\dayz_buildings\models\rocks.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemStone;//"Rough Stone"
|
||||
};
|
||||
|
||||
class ItemConcreteBlock: CA_Magazine //Construection,indestrial
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemConcreteBlock;//"Concrete Block"
|
||||
picture = "\z\addons\dayz_buildings\equip\concreteblock.paa";
|
||||
model = "z\addons\dayz_buildings\models\concreteblock.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemConcreteBlock;//"Concrete Block"
|
||||
};
|
||||
|
||||
class CinderBlocks: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CINDERBLOCKS;
|
||||
model = "\z\addons\dayz_epoch\models\cinder_stack.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\epuip_cinder_blocks_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_CINDERBLOCKS_DESC;
|
||||
weight = 100;
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_252;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"half_cinder_wall_kit",1}};
|
||||
input[] = {{"CinderBlocks",3},{"MortarBucket",1}};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_253;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"cinder_garage_kit",1}};
|
||||
input[] = {{"CinderBlocks",3},{"MortarBucket",1},{"ItemTankTrap",1}};
|
||||
};
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_234;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"cinder_door_kit",1}};
|
||||
input[] = {{"CinderBlocks",4},{"MortarBucket",1},{"ItemTankTrap",1}};
|
||||
};
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_252_1;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"full_cinder_wall_kit",1}};
|
||||
input[] = {{"CinderBlocks",7},{"MortarBucket",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class MortarBucket: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_BUCKETOFMORTAR;
|
||||
model = "\z\addons\dayz_epoch\models\mortar.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_mortar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BUCKETOFMORTAR_DESC;
|
||||
weight = 21;
|
||||
};
|
||||
|
||||
class equip_brick : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\z\addons\dayz_communityassets\models\brick.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_brick.paa";
|
||||
displayName = $STR_ITEM_NAME_equip_brick;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_brick;
|
||||
};
|
||||
@@ -0,0 +1,29 @@
|
||||
class ItemAluminumBar: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_ALUMINUM;
|
||||
model = "\z\addons\dayz_epoch\models\aluminum_bar.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_alum_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_ALUMINUM_DESC;
|
||||
|
||||
};
|
||||
class ItemAluminumBar10oz: CA_Magazine {
|
||||
scope = public;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemAluminumBar",10}};
|
||||
input[] = {{"ItemAluminumBar10oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
789
SQF/dayz_code/Configs/CfgMagazines/Items/Currency/Briefcase.hpp
Normal file
789
SQF/dayz_code/Configs/CfgMagazines/Items/Currency/Briefcase.hpp
Normal file
@@ -0,0 +1,789 @@
|
||||
class ItemBriefcase_Base: CA_Magazine {
|
||||
scope = public;
|
||||
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 {
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_briefcase_E_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRIEFCASE_EMPTY;
|
||||
weight = 1;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase10oz",1}};
|
||||
input[] = {{"ItemBriefcaseEmpty",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_198;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcaseEmpty",1},{"ItemGoldBar10oz",10}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS10oz",1}};
|
||||
input[] = {{"ItemBriefcaseEmpty",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_S_198;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseEmpty",1},{"ItemSilverBar10oz",10}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase20oz",1}};
|
||||
input[] = {{"ItemBriefcase10oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_199;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase10oz",1},{"ItemGoldBar10oz",9}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcase10oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase30oz",1}};
|
||||
input[] = {{"ItemBriefcase20oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_202;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase20oz",1},{"ItemGoldBar10oz",8}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase10oz",1}};
|
||||
input[] = {{"ItemBriefcase20oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",2},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcase20oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase40oz",1}};
|
||||
input[] = {{"ItemBriefcase30oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_203;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase30oz",1},{"ItemGoldBar10oz",7}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase20oz",1}};
|
||||
input[] = {{"ItemBriefcase30oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",3},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcase30oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase50oz",1}};
|
||||
input[] = {{"ItemBriefcase40oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_204;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase40oz",1},{"ItemGoldBar10oz",6}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase30oz",1}};
|
||||
input[] = {{"ItemBriefcase40oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",4},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcase40oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase60oz",1}};
|
||||
input[] = {{"ItemBriefcase50oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_205;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase50oz",1},{"ItemGoldBar10oz",5}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase40oz",1}};
|
||||
input[] = {{"ItemBriefcase50oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",5},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcase50oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase70oz",1}};
|
||||
input[] = {{"ItemBriefcase60oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_206;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase60oz",1},{"ItemGoldBar10oz",4}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase50oz",1}};
|
||||
input[] = {{"ItemBriefcase60oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",6},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcase60oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase80oz",1}};
|
||||
input[] = {{"ItemBriefcase70oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_207;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase70oz",1},{"ItemGoldBar10oz",3}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase60oz",1}};
|
||||
input[] = {{"ItemBriefcase70oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",7},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcase70oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase90oz",1}};
|
||||
input[] = {{"ItemBriefcase80oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_208;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase80oz",1},{"ItemGoldBar10oz",2}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase70oz",1}};
|
||||
input[] = {{"ItemBriefcase80oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",8},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcase80oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcase100oz",1}};
|
||||
input[] = {{"ItemBriefcase90oz",1},{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase80oz",1}};
|
||||
input[] = {{"ItemBriefcase90oz",1}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",9},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcase90oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_200;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1},{"ItemBriefcase90oz",1}};
|
||||
input[] = {{"ItemBriefcase100oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",10},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcase100oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
// Silver
|
||||
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 {
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS20oz",1}};
|
||||
input[] = {{"ItemBriefcaseS10oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_S_199;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS10oz",1},{"ItemSilverBar10oz",9}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcaseS10oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS30oz",1}};
|
||||
input[] = {{"ItemBriefcaseS20oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_S_202;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS20oz",1},{"ItemSilverBar10oz",8}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS10oz",1}};
|
||||
input[] = {{"ItemBriefcaseS20oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",2},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcaseS20oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS40oz",1}};
|
||||
input[] = {{"ItemBriefcaseS30oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_S_203;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS30oz",1},{"ItemSilverBar10oz",7}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS20oz",1}};
|
||||
input[] = {{"ItemBriefcaseS30oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",3},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcaseS30oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS50oz",1}};
|
||||
input[] = {{"ItemBriefcaseS40oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_S_204;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS40oz",1},{"ItemSilverBar10oz",6}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS30oz",1}};
|
||||
input[] = {{"ItemBriefcaseS40oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",4},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcaseS40oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS60oz",1}};
|
||||
input[] = {{"ItemBriefcaseS50oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_S_205;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS50oz",1},{"ItemSilverBar10oz",5}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS40oz",1}};
|
||||
input[] = {{"ItemBriefcaseS50oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",5},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcaseS50oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS70oz",1}};
|
||||
input[] = {{"ItemBriefcaseS60oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_S_206;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS60oz",1},{"ItemSilverBar10oz",4}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS50oz",1}};
|
||||
input[] = {{"ItemBriefcaseS60oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",6},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcaseS60oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS80oz",1}};
|
||||
input[] = {{"ItemBriefcaseS70oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_S_207;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS70oz",1},{"ItemSilverBar10oz",3}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS60oz",1}};
|
||||
input[] = {{"ItemBriefcaseS70oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",7},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcaseS70oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS90oz",1}};
|
||||
input[] = {{"ItemBriefcaseS80oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_S_208;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS80oz",1},{"ItemSilverBar10oz",2}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS70oz",1}};
|
||||
input[] = {{"ItemBriefcaseS80oz",1}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",8},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcaseS80oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_S_197;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemBriefcaseS100oz",1}};
|
||||
input[] = {{"ItemBriefcaseS90oz",1},{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS80oz",1}};
|
||||
input[] = {{"ItemBriefcaseS90oz",1}};
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",9},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcaseS90oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_S_200;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1},{"ItemBriefcaseS90oz",1}};
|
||||
input[] = {{"ItemBriefcaseS100oz",1}};
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_201;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",10},{"ItemBriefcaseEmpty",1}};
|
||||
input[] = {{"ItemBriefcaseS100oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -0,0 +1,9 @@
|
||||
class ItemBronzeBar: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_BRONZE;
|
||||
model = "\z\addons\dayz_epoch\models\bronze_bar.p3d"; // This model does not exist under the written path
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_bar_bronze_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_BRONZE_DESC;
|
||||
};
|
||||
@@ -0,0 +1,38 @@
|
||||
class ItemCopperBar: CA_Magazine {
|
||||
scope = public;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_9;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemCopperBar10oz",1}};
|
||||
input[] = {{"ItemCopperBar",10}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemCopperBar10oz: CA_Magazine {
|
||||
scope = public;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemCopperBar",10}};
|
||||
input[] = {{"ItemCopperBar10oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
410
SQF/dayz_code/Configs/CfgMagazines/Items/Currency/GoldBar.hpp
Normal file
410
SQF/dayz_code/Configs/CfgMagazines/Items/Currency/GoldBar.hpp
Normal file
@@ -0,0 +1,410 @@
|
||||
class ItemGoldBar: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 100;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_GOLD;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar2oz",1}};
|
||||
input[] = {{"ItemGoldBar",2}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_210_9;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar",10}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar2oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 200;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_2OZGOLD;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar3oz",1}};
|
||||
input[] = {{"ItemGoldBar2oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar",2}};
|
||||
input[] = {{"ItemGoldBar2oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_210_8;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar2oz",1},{"ItemGoldBar",8}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar3oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 300;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_3OZGOLD;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar4oz",1}};
|
||||
input[] = {{"ItemGoldBar3oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar2oz",1},{"ItemGoldBar",1}};
|
||||
input[] = {{"ItemGoldBar3oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_210_7;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar3oz",1},{"ItemGoldBar",7}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar",3}};
|
||||
input[] = {{"ItemGoldBar3oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar4oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 400;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_4OZGOLD;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar5oz",1}};
|
||||
input[] = {{"ItemGoldBar4oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar3oz",1},{"ItemGoldBar",1}};
|
||||
input[] = {{"ItemGoldBar4oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_210_6;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar4oz",1},{"ItemGoldBar",6}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar",4}};
|
||||
input[] = {{"ItemGoldBar4oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar5oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 500;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_5OZGOLD;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar6oz",1}};
|
||||
input[] = {{"ItemGoldBar5oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar4oz",1},{"ItemGoldBar",1}};
|
||||
input[] = {{"ItemGoldBar5oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_210_5;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar5oz",1},{"ItemGoldBar",5}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar",5}};
|
||||
input[] = {{"ItemGoldBar5oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar6oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 600;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_6OZGOLD;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar7oz",1}};
|
||||
input[] = {{"ItemGoldBar6oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar5oz",1},{"ItemGoldBar",1}};
|
||||
input[] = {{"ItemGoldBar6oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_210_4;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar6oz",1},{"ItemGoldBar",4}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar",6}};
|
||||
input[] = {{"ItemGoldBar6oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar7oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 700;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_7OZGOLD;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar8oz",1}};
|
||||
input[] = {{"ItemGoldBar7oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar6oz",1},{"ItemGoldBar",1}};
|
||||
input[] = {{"ItemGoldBar7oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_210_3;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar7oz",1},{"ItemGoldBar",3}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar",7}};
|
||||
input[] = {{"ItemGoldBar7oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar8oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 800;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_8OZGOLD;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar9oz",1}};
|
||||
input[] = {{"ItemGoldBar8oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar7oz",1},{"ItemGoldBar",1}};
|
||||
input[] = {{"ItemGoldBar8oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_210_2;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar8oz",1},{"ItemGoldBar",2}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar",8}};
|
||||
input[] = {{"ItemGoldBar8oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar9oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 900;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_9OZGOLD;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar10oz",1}};
|
||||
input[] = {{"ItemGoldBar9oz",1},{"ItemGoldBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar8oz",1},{"ItemGoldBar",1}};
|
||||
input[] = {{"ItemGoldBar9oz",1}};
|
||||
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar",9}};
|
||||
input[] = {{"ItemGoldBar9oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemGoldBar10oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 1000;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_10OZGOLD;
|
||||
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 {
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemGoldBar",10}};
|
||||
input[] = {{"ItemGoldBar10oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
410
SQF/dayz_code/Configs/CfgMagazines/Items/Currency/SilverBar.hpp
Normal file
410
SQF/dayz_code/Configs/CfgMagazines/Items/Currency/SilverBar.hpp
Normal file
@@ -0,0 +1,410 @@
|
||||
class ItemSilverBar: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_SILVER;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar2oz",1}};
|
||||
input[] = {{"ItemSilverBar",2}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_210_9;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar",10}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar2oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 2;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_2OZSILVER;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar3oz",1}};
|
||||
input[] = {{"ItemSilverBar2oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar",2}};
|
||||
input[] = {{"ItemSilverBar2oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_210_8;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar2oz",1},{"ItemSilverBar",8}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar3oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 3;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_3OZSILVER;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar4oz",1}};
|
||||
input[] = {{"ItemSilverBar3oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar2oz",1},{"ItemSilverBar",1}};
|
||||
input[] = {{"ItemSilverBar3oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_210_7;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar3oz",1},{"ItemSilverBar",7}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar",3}};
|
||||
input[] = {{"ItemSilverBar3oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar4oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 4;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_4OZSILVER;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar5oz",1}};
|
||||
input[] = {{"ItemSilverBar4oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar3oz",1},{"ItemSilverBar",1}};
|
||||
input[] = {{"ItemSilverBar4oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_210_6;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar4oz",1},{"ItemSilverBar",6}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar",4}};
|
||||
input[] = {{"ItemSilverBar4oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar5oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 5;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_5OZSILVER;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar6oz",1}};
|
||||
input[] = {{"ItemSilverBar5oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar4oz",1},{"ItemSilverBar",1}};
|
||||
input[] = {{"ItemSilverBar5oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_210_5;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar5oz",1},{"ItemSilverBar",5}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar",5}};
|
||||
input[] = {{"ItemSilverBar5oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar6oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 6;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_6OZSILVER;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar7oz",1}};
|
||||
input[] = {{"ItemSilverBar6oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar5oz",1},{"ItemSilverBar",1}};
|
||||
input[] = {{"ItemSilverBar6oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_210_4;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar6oz",1},{"ItemSilverBar",4}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar",6}};
|
||||
input[] = {{"ItemSilverBar6oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar7oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 7;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_7OZSILVER;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar8oz",1}};
|
||||
input[] = {{"ItemSilverBar7oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar6oz",1},{"ItemSilverBar",1}};
|
||||
input[] = {{"ItemSilverBar7oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_210_3;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar7oz",1},{"ItemSilverBar",3}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar",7}};
|
||||
input[] = {{"ItemSilverBar7oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar8oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 8;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_8OZSILVER;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar9oz",1}};
|
||||
input[] = {{"ItemSilverBar8oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar7oz",1},{"ItemSilverBar",1}};
|
||||
input[] = {{"ItemSilverBar8oz",1}};
|
||||
|
||||
};
|
||||
class Crafting2 {
|
||||
text = $STR_EPOCH_PLAYER_210_2;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar8oz",1},{"ItemSilverBar",2}};
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar",8}};
|
||||
input[] = {{"ItemSilverBar8oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar9oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 9;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_9OZSILVER;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_210_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar10oz",1}};
|
||||
input[] = {{"ItemSilverBar9oz",1},{"ItemSilverBar",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar8oz",1},{"ItemSilverBar",1}};
|
||||
input[] = {{"ItemSilverBar9oz",1}};
|
||||
|
||||
};
|
||||
class Crafting3 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar",9}};
|
||||
input[] = {{"ItemSilverBar9oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemSilverBar10oz: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
worth = 10;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_10OZSILVER;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_211_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar9oz",1},{"ItemSilverBar",1}};
|
||||
input[] = {{"ItemSilverBar10oz",1}};
|
||||
|
||||
};
|
||||
class Crafting1 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemSilverBar",10}};
|
||||
input[] = {{"ItemSilverBar10oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
29
SQF/dayz_code/Configs/CfgMagazines/Items/Currency/TinBar.hpp
Normal file
29
SQF/dayz_code/Configs/CfgMagazines/Items/Currency/TinBar.hpp
Normal file
@@ -0,0 +1,29 @@
|
||||
class ItemTinBar: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_TIN;
|
||||
model = "\z\addons\dayz_epoch\models\tin_bar.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_tin_bar_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_TIN_DESC;
|
||||
|
||||
};
|
||||
class ItemTinBar10oz: CA_Magazine {
|
||||
scope = public;
|
||||
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 {
|
||||
text = $STR_EPOCH_PLAYER_211;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"fire"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"ItemTinBar",10}};
|
||||
input[] = {{"ItemTinBar10oz",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
282
SQF/dayz_code/Configs/CfgMagazines/Items/DocumentsPapers.hpp
Normal file
282
SQF/dayz_code/Configs/CfgMagazines/Items/DocumentsPapers.hpp
Normal file
@@ -0,0 +1,282 @@
|
||||
class ItemDocument: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_DOCUMENT;
|
||||
model = "\z\addons\dayz_epoch\models\doc_generic.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_doc_generic_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_DOCUMENT_DESC;
|
||||
weight = 0.1;
|
||||
sfx = "document";
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_188;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
randomOutput = 1;
|
||||
output[] = {{"ItemLetter",1},{"ItemDocumentRamp",1},{"ItemBook1",1},{"ItemBook2",1},{"ItemBook3",1},{"ItemBook4",1},{"ItemNewspaper",1},{"ItemORP",1},{"ItemAVE",1},{"ItemLRK",1},{"ItemTNK",1},{"ItemPlotDeed",1}};
|
||||
input[] = {{"ItemDocument",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemPlotDeed: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_PLOTDEED;
|
||||
model = "\z\addons\dayz_epoch\models\doc_generic.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_doc_generic_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_PLOTDEED_DESC;
|
||||
weight = 0.1;
|
||||
sfx = "document";
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLOTDEED_ACTION;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"plot_pole_kit",1}};
|
||||
input[] = {{"ItemPlotDeed",1},{"ItemGoldBar10oz",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemLetter: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_LETTER;
|
||||
model = "\z\addons\dayz_epoch\models\doc_letter.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_doc_letter_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_LETTER_DESC;
|
||||
weight = 0.1;
|
||||
};
|
||||
|
||||
class ItemBook1: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_ROMANCENOVEL;
|
||||
model = "\z\addons\dayz_epoch\models\doc_trashy1.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_trashy1_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_ROMANCENOVEL_DESC;
|
||||
weight = 0.1;
|
||||
};
|
||||
|
||||
class ItemBook2: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_ROMANCENOVEL;
|
||||
model = "\z\addons\dayz_epoch\models\doc_trashy2.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_trashy2_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_ROMANCENOVEL_DESC2;
|
||||
weight = 0.1;
|
||||
};
|
||||
|
||||
class ItemBook3: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_BOOK;
|
||||
model = "\z\addons\dayz_epoch\models\doc_child1.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_child1_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_BOOK_DESC;
|
||||
weight = 0.1;
|
||||
};
|
||||
|
||||
class ItemBook4: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_BOOK;
|
||||
model = "\z\addons\dayz_epoch\models\doc_child2.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_child2_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_BOOK_DESC;
|
||||
weight = 0.1;
|
||||
};
|
||||
|
||||
class ItemNewspaper: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_TORNNEWSPAPER;
|
||||
model = "\z\addons\dayz_epoch\models\doc_deaths.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_deaths_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_TORNNEWSPAPER_DESC;
|
||||
weight = 0.1;
|
||||
class ItemActions {
|
||||
class Obituaries {
|
||||
text = $STR_EPOCH_TORNNEWSPAPER_ACTION;
|
||||
script = "spawn player_deathBoard;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemDocumentRamp: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_WOODRAMP;
|
||||
model = "\z\addons\dayz_epoch\models\doc_ramp.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_doc_ramp_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_WOODRAMP_DESC;
|
||||
weight = 0.1;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_189;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"wood_ramp_kit",1}};
|
||||
input[] = {{"ItemDocumentRamp",1},{"PartWoodLumber",8}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemBookBible : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "z\addons\dayz_communityassets\models\bible.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_bible_CA.paa";
|
||||
displayName = $STR_BOOK_NAME_BIBLE;
|
||||
descriptionShort = $STR_BOOK_DESC_BIBLE;
|
||||
};
|
||||
|
||||
class ItemTrashPaper : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "z\addons\dayz_communityassets\models\paper_sheet_clean_note.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_paper_sheet_note_ca.paa";
|
||||
displayName = $STR_name_ItemTrashPaper;
|
||||
descriptionShort = $STR_desc_ItemTrashPaper;
|
||||
};
|
||||
|
||||
class ItemTrashPaperMusic : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "z\addons\dayz_communityassets\models\paper_sheet_musical.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_paper_sheet_musical_ca.paa";
|
||||
displayName = $STR_name_ItemTrashPaperMusic;
|
||||
descriptionShort = $STR_desc_ItemTrashPaperMusic;
|
||||
};
|
||||
|
||||
class equip_paper_sheet : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_paper_sheet;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_paper_sheet;
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_paper_sheet.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_note : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_note;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_note;
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_note.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
// Vehicle upgrade parts
|
||||
class ItemORP: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_VEHUP_ORP;
|
||||
model = "\z\addons\dayz_epoch\models\doc_Up1.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_docup1_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_VEHUP_ORP_DESC;
|
||||
weight = 0.1;
|
||||
sfx = "document";
|
||||
class ItemActions {
|
||||
class Upgrades {
|
||||
text = $STR_EPOCH_PLAYER_UPGRADEV;
|
||||
script = "spawn player_upgradeVehicle;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemAVE: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_VEHUP_AVE;
|
||||
model = "\z\addons\dayz_epoch\models\doc_Up2.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_docup2_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_VEHUP_AVE_DESC;
|
||||
weight = 0.1;
|
||||
sfx = "document";
|
||||
class ItemActions {
|
||||
class Upgrades {
|
||||
text = $STR_EPOCH_PLAYER_UPGRADEV;
|
||||
script = "spawn player_upgradeVehicle;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemLRK: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_VEHUP_LRK;
|
||||
model = "\z\addons\dayz_epoch\models\doc_Up3.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_docup3_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_VEHUP_LRK_DESC;
|
||||
weight = 0.1;
|
||||
sfx = "document";
|
||||
class ItemActions {
|
||||
class Upgrades {
|
||||
text = $STR_EPOCH_PLAYER_UPGRADEV;
|
||||
script = "spawn player_upgradeVehicle;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemTNK: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_VEHUP_TNK;
|
||||
model = "\z\addons\dayz_epoch\models\doc_Up4.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_docup4_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_VEHUP_TNK_DESC;
|
||||
weight = 0.1;
|
||||
sfx = "document";
|
||||
class ItemActions {
|
||||
class Upgrades {
|
||||
text = $STR_EPOCH_PLAYER_UPGRADEV;
|
||||
script = "spawn player_upgradeVehicle;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemARM: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_VEHUP_ARM;
|
||||
model = "\z\addons\dayz_epoch\models\doc_Up4.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_docup4_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_VEHUP_ARM_DESC;
|
||||
weight = 0.1;
|
||||
sfx = "document";
|
||||
class ItemActions {
|
||||
class Upgrades {
|
||||
text = $STR_EPOCH_PLAYER_UPGRADEV;
|
||||
script = "spawn player_upgradeVehicle;";
|
||||
};
|
||||
};
|
||||
};
|
||||
60
SQF/dayz_code/Configs/CfgMagazines/Items/Electronics.hpp
Normal file
60
SQF/dayz_code/Configs/CfgMagazines/Items/Electronics.hpp
Normal file
@@ -0,0 +1,60 @@
|
||||
class equip_aa_battery : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_aa_battery;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_aa_battery;
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_aa_battery_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_d_battery : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_d_battery;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_d_battery;
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_d_battery_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_floppywire : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_floppywire;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_floppywire;
|
||||
model = "\z\addons\dayz_communityassets\models\floppywire.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_floppywire.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_scrapelectronics : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_scrapelectronics;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_scrapelectronics;
|
||||
model = "\z\addons\dayz_communityassets\models\scrapelectronics.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\scrapelectronics.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class ItemLightBulb: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_LIGHTBULB;
|
||||
model = "\z\addons\dayz_epoch\models\bulb.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_bulb_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_LIGHTBULB_DESC;
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_196;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"light_pole_kit",1}};
|
||||
input[] = {{"ItemLightBulb",1},{"PartGeneric",1},{"PartWoodLumber",6}};
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -1,3 +1,22 @@
|
||||
class TimeBomb: CA_Magazine
|
||||
{
|
||||
scope = 1;
|
||||
displayName = "$STR_MN_TIME_BOMB";
|
||||
picture = "\CA\weapons\data\equip\m_satchel_CA.paa";
|
||||
useAction = 1;
|
||||
useActionTitle = "$STR_ACTION_PUTBOMB";
|
||||
type = 256;
|
||||
value = 5;
|
||||
ammo = "TimeBomb";
|
||||
count = 1;
|
||||
initSpeed = 0;
|
||||
maxLeadSpeed = 0;
|
||||
nameSoundWeapon = "satchelcharge";
|
||||
nameSound = "satchelcharge";
|
||||
sound[] = {"\ca\Weapons\Data\Sound\gravel_L",0.00031622776,1,10};
|
||||
descriptionShort = "$STR_DSS_TimeBomb";
|
||||
};
|
||||
|
||||
class Mine: TimeBomb
|
||||
{
|
||||
scope = 2;
|
||||
@@ -38,4 +57,31 @@ class PipeBomb: TimeBomb
|
||||
nameSound = "satchelcharge";
|
||||
useAction = 1;
|
||||
useActionTitle = "$STR_ACTION_PUTBOMB";
|
||||
};
|
||||
};
|
||||
|
||||
class ItemC4Charge : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_C4_CHARGE;
|
||||
descriptionShort = $STR_EPOCH_C4_CHARGE_DESC;
|
||||
model = "\ca\weapons\explosive.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\carbomb.paa";
|
||||
};
|
||||
|
||||
class ItemCarBomb : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ITEM_NAME_equip_carbomb;
|
||||
model = "\ca\weapons\explosive.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\carbomb.paa";
|
||||
descriptionShort = $STR_ITEM_DESC_equip_carbomb;
|
||||
class ItemActions {
|
||||
class Use {
|
||||
text = $STR_ACTIONS_attach_carbomb;
|
||||
script = "spawn player_attach_bomb;";
|
||||
};
|
||||
};
|
||||
};
|
||||
87
SQF/dayz_code/Configs/CfgMagazines/Items/Flares.hpp
Normal file
87
SQF/dayz_code/Configs/CfgMagazines/Items/Flares.hpp
Normal file
@@ -0,0 +1,87 @@
|
||||
class HandRoadFlare : HandGrenade
|
||||
{
|
||||
scope = public;
|
||||
|
||||
picture = "\dayz_weapons\textures\equip_roadflare_ca.paa";
|
||||
model = "\dayz_weapons\models\roadflare";
|
||||
displayName = $STR_MAG_NAME_4;
|
||||
descriptionShort = $STR_MAG_DESC_4;
|
||||
|
||||
ammo = "RoadFlare";
|
||||
count = 10;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CombineMag
|
||||
{
|
||||
text = $STR_MAG_COMBINE;
|
||||
script = "spawn player_combineMag;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class HandChemBlue : HandGrenade
|
||||
{
|
||||
scope = public;
|
||||
|
||||
picture = "\dayz_weapons\textures\equip_chem_blue_ca.paa";
|
||||
model = "\dayz_weapons\models\chem_gear_blue";
|
||||
displayName = $STR_MAG_NAME_7;
|
||||
descriptionShort = $STR_MAG_DESC_5;
|
||||
|
||||
ammo = "ChemBlue";
|
||||
count = 10;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CombineMag
|
||||
{
|
||||
text = $STR_MAG_COMBINE;
|
||||
script = "spawn player_combineMag;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class HandChemGreen : HandGrenade
|
||||
{
|
||||
scope = public;
|
||||
|
||||
picture = "\dayz_weapons\textures\equip_chem_green_ca.paa";
|
||||
model = "\dayz_weapons\models\chem_gear_green";
|
||||
displayName = $STR_MAG_NAME_5;
|
||||
descriptionShort = $STR_MAG_DESC_5;
|
||||
|
||||
ammo = "ChemGreen";
|
||||
count = 10;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CombineMag
|
||||
{
|
||||
text = $STR_MAG_COMBINE;
|
||||
script = "spawn player_combineMag;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class HandChemRed : HandGrenade
|
||||
{
|
||||
scope = public;
|
||||
|
||||
picture = "\dayz_weapons\textures\equip_chem_red_ca.paa";
|
||||
model = "\dayz_weapons\models\chem_gear_red";
|
||||
displayName = $STR_MAG_NAME_6;
|
||||
descriptionShort = $STR_MAG_DESC_5;
|
||||
|
||||
ammo = "ChemRed";
|
||||
count = 10;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class CombineMag
|
||||
{
|
||||
text = $STR_MAG_COMBINE;
|
||||
script = "spawn player_combineMag;";
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -1,67 +0,0 @@
|
||||
class ItemJerrycanEmpty : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\jerrycan.p3d";
|
||||
picture = "\dayz_equip\textures\equip_jerrycan_e_ca.paa";
|
||||
displayName = $STR_ITEM_NAME_JERRYCAN_EMPTY;
|
||||
descriptionShort = $STR_ITEM_DESC_JERRYCAN_EMPTY;
|
||||
|
||||
fuelQuantity = 0;
|
||||
fullcan = "ItemJerrycan";
|
||||
};
|
||||
|
||||
class ItemJerrycan : ItemJerrycanEmpty
|
||||
{
|
||||
picture = "\dayz_equip\textures\equip_jerrycan_ca.paa";
|
||||
displayName = $STR_ITEM_NAME_JERRYCAN;
|
||||
descriptionShort = $STR_ITEM_DESC_JERRYCAN;
|
||||
|
||||
fuelQuantity = 20;
|
||||
containerEmpty = "ItemJerrycanEmpty";
|
||||
|
||||
//used for tent burning
|
||||
fireIntensity = 6;
|
||||
|
||||
class ItemActions {
|
||||
class Empty {
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemFuelcanEmpty : ItemJerrycanEmpty
|
||||
{
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "z\addons\dayz_communityassets\models\fuelcan.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_fuelcan_empty_CA.paa";
|
||||
displayName = $STR_ITEM_NAME_FUELCAN_EMPTY;
|
||||
descriptionShort = $STR_ITEM_DESC_FUELCAN_EMPTY;
|
||||
|
||||
fuelQuantity = 0;
|
||||
fullcan = "ItemFuelcan";
|
||||
};
|
||||
|
||||
class ItemFuelcan : ItemFuelcanEmpty
|
||||
{
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_fuelcan_CA.paa";
|
||||
displayName = $STR_ITEM_NAME_FUELCAN;
|
||||
descriptionShort = $STR_ITEM_DESC_FUELCAN;
|
||||
|
||||
fuelQuantity = 5;
|
||||
containerEmpty = "ItemFuelcanEmpty";
|
||||
|
||||
//used for tent burning
|
||||
fireIntensity = 4;
|
||||
|
||||
class ItemActions {
|
||||
class Empty {
|
||||
text = $STR_EQUIP_NAME_13_EMPTY;
|
||||
script = "spawn player_emptyContainer";
|
||||
};
|
||||
};
|
||||
};
|
||||
63
SQF/dayz_code/Configs/CfgMagazines/Items/Gems.hpp
Normal file
63
SQF/dayz_code/Configs/CfgMagazines/Items/Gems.hpp
Normal file
@@ -0,0 +1,63 @@
|
||||
class ItemTopaz : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_GEM_NAME_TOPAZ;
|
||||
model = "\z\addons\dayz_epoch\models\topaz.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_topaz_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_GEM_NAME_TOPAZ;
|
||||
};
|
||||
class ItemObsidian : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_GEM_NAME_OBSIDIAN;
|
||||
model = "\z\addons\dayz_epoch\models\obsidian.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_obsidian_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_GEM_NAME_OBSIDIAN;
|
||||
};
|
||||
class ItemSapphire : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_GEM_NAME_SAPPHIRE;
|
||||
model = "\z\addons\dayz_epoch\models\sapphire.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_sapphire_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_GEM_NAME_SAPPHIRE;
|
||||
};
|
||||
class ItemAmethyst : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_GEM_NAME_AMETHYST;
|
||||
model = "\z\addons\dayz_epoch\models\amethyst.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_amethyst_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_GEM_NAME_AMETHYST;
|
||||
};
|
||||
class ItemEmerald : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_GEM_NAME_EMERALD;
|
||||
model = "\z\addons\dayz_epoch\models\emerald.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_emerald_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_GEM_NAME_EMERALD;
|
||||
};
|
||||
class ItemCitrine : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_GEM_NAME_CITRINE;
|
||||
model = "\z\addons\dayz_epoch\models\citrine.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_citrine_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_GEM_NAME_CITRINE;
|
||||
};
|
||||
class ItemRuby : CA_Magazine {
|
||||
scope = public;
|
||||
displayName = $STR_GEM_NAME_RUBY;
|
||||
model = "\z\addons\dayz_epoch\models\ruby.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_ruby_CA.paa";
|
||||
count = 1;
|
||||
type = "256";
|
||||
descriptionShort = $STR_GEM_NAME_RUBY;
|
||||
};
|
||||
@@ -1,24 +0,0 @@
|
||||
class ItemGenerator : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\generator_gear.p3d";
|
||||
picture = "\dayz_equip\textures\equip_generator_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_31;
|
||||
descriptionShort = $STR_EQUIP_DESC_31;
|
||||
weight = 30; // used in R3F weight
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTION_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"ItemGenerator"};
|
||||
create = "Generator_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -1,26 +0,0 @@
|
||||
#include "Fuel.hpp"
|
||||
|
||||
//Materials
|
||||
#include "Wood.hpp"
|
||||
#include "Stone.hpp"
|
||||
#include "Sandbag.hpp"
|
||||
#include "MetalFenceItems.hpp"
|
||||
|
||||
//Simple buildables
|
||||
#include "Tent.hpp"
|
||||
//#include "CamoNet.hpp" //Duplicate of Epoch camo nets in DZE\Misc.hpp
|
||||
#include "TankTrap.hpp"
|
||||
#include "WireFence.hpp"
|
||||
#include "BearTrap.hpp"
|
||||
#include "TripWire.hpp"
|
||||
|
||||
//Base stuff
|
||||
#include "Workbench.hpp"
|
||||
#include "Padlock.hpp"
|
||||
#include "Generator.hpp"
|
||||
|
||||
//Miscellaneous
|
||||
#include "equip_brick.hpp"
|
||||
#include "equip_lever.hpp"
|
||||
#include "WaterBottle.hpp"
|
||||
#include "Explosives.hpp"
|
||||
@@ -1,3 +1,16 @@
|
||||
class ItemComboLock: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_COMBINATIONLOCK;
|
||||
weight = 0.5;
|
||||
model = "\z\addons\dayz_epoch\models\combo_lock_mag.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_combolock_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_COMBINATIONLOCK_DESC;
|
||||
};
|
||||
|
||||
|
||||
class ItemPadlock: CA_Magazine //Vanilla lock, left in config for potential admin use, but all scripts changed to use Epoch ItemComboLock
|
||||
{
|
||||
scope = public;
|
||||
143
SQF/dayz_code/Configs/CfgMagazines/Items/Metal.hpp
Normal file
143
SQF/dayz_code/Configs/CfgMagazines/Items/Metal.hpp
Normal file
@@ -0,0 +1,143 @@
|
||||
class PartGeneric : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\genericparts.p3d";
|
||||
picture = "\dayz_equip\textures\equip_genericparts_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_10;
|
||||
descriptionShort = $STR_EQUIP_DESC_10;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_213;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"fire"};
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"ItemPole",1}};
|
||||
input[] = {{"PartGeneric",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemPole: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_METALPOLE;
|
||||
model = "\z\addons\dayz_epoch\models\pipe.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_pipe_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_METALPOLE_DESC;
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_218;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"fire"};
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"ItemCorrugated",1}};
|
||||
input[] = {{"ItemPole",2},{"ItemTankTrap",2},{"PartWoodLumber",2}};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_219;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"rusty_gate_kit",1}};
|
||||
input[] = {{"ItemPole",3},{"ItemTankTrap",1}};
|
||||
};
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_220;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"metal_panel_kit",1}};
|
||||
input[] = {{"ItemPole",4},{"ItemTankTrap",4}};
|
||||
};
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_305;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"ItemScaffoldingKit",1}};
|
||||
input[] = {{"ItemPole",4},{"ItemTankTrap",2},{"PartWoodLumber",4}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemMetalSheet: CA_Magazine //Construection,farm,indestrial,castle
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemMetalSheet;//"Corrugated Sheet"
|
||||
picture = "\z\addons\dayz_buildings\equip\item_sheetmetal.paa";
|
||||
model = "z\addons\dayz_buildings\models\sheet_metal.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemMetalSheet;//"Metal Sheeting"
|
||||
};
|
||||
|
||||
class equip_metal_sheet : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_metal_sheet;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_metal_sheet;
|
||||
model = "\z\addons\dayz_communityassets\models\metal_sheet_clean.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_metal_sheet.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_metal_sheet_rusted : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_metal_sheet_rusted;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_metal_sheet_rusted;
|
||||
model = "\z\addons\dayz_communityassets\models\metal_sheet_rusted.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_metal_sheet_rusted.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class ItemRSJ: CA_Magazine //Construection,farm,indestrial,castle
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemRSJ;//"Steel Beam"
|
||||
picture = "\z\addons\dayz_buildings\equip\item_rsj.paa";
|
||||
model = "z\addons\dayz_buildings\models\rsj.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemRSJ;//"Steel RSJ Support Beam"
|
||||
};
|
||||
|
||||
class equip_1inch_metal_pipe : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_1inch_metal_pipe;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_1inch_metal_pipe;
|
||||
model = "\z\addons\dayz_communityassets\models\1in_pipe.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_1inch_metal_pipe_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_2inch_metal_pipe : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_2inch_metal_pipe;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_2inch_metal_pipe;
|
||||
model = "\z\addons\dayz_communityassets\models\2in_pipe.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_2inch_metal_pipe.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_tent_poles : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_tent_poles;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_tent_poles;
|
||||
model = "z\addons\dayz_communityassets\models\1m_pole_6.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_1m_pole_6_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
@@ -1,70 +0,0 @@
|
||||
class ItemMetalSheet: CA_Magazine //Construection,farm,indestrial,castle
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemMetalSheet;//"Corrugated Sheet"
|
||||
picture = "\z\addons\dayz_buildings\equip\item_sheetmetal.paa";
|
||||
model = "z\addons\dayz_buildings\models\sheet_metal.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemMetalSheet;//"Metal Sheeting"
|
||||
};
|
||||
|
||||
class ItemConcreteBlock: CA_Magazine //Construection,indestrial
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemConcreteBlock;//"Concrete Block"
|
||||
picture = "\z\addons\dayz_buildings\equip\concreteblock.paa";
|
||||
model = "z\addons\dayz_buildings\models\concreteblock.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemConcreteBlock;//"Concrete Block"
|
||||
};
|
||||
|
||||
class ItemRSJ: CA_Magazine //Construection,farm,indestrial,castle
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemRSJ;//"Steel Beam"
|
||||
picture = "\z\addons\dayz_buildings\equip\item_rsj.paa";
|
||||
model = "z\addons\dayz_buildings\models\rsj.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemRSJ;//"Steel RSJ Support Beam"
|
||||
};
|
||||
|
||||
class ItemScrews: CA_Magazine //Construection,farm,indestrial,castle,residential
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemScrews;//"Box of screws for metal"
|
||||
picture = "\z\addons\dayz_epoch_w\magazine\ui\m_screws_ca.paa";
|
||||
model = "\z\addons\dayz_epoch_w\magazine\dze_screwtray.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemScrews;//"Box of screws"
|
||||
};
|
||||
|
||||
/*
|
||||
class ItemBagScrews: CA_Magazine//Construection,indestrial,supermarket
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemScrews;//"Box of screws for metal"
|
||||
picture = "\z\addons\dayz_buildings\equip\item_screws.paa";
|
||||
model = "z\addons\dayz_buildings\models\screws.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemScrews;//"Box of screws"
|
||||
|
||||
class ItemActions {
|
||||
class Spilt {
|
||||
text = "Spilt Box";
|
||||
script = "; [_this] call fn_spiltBag;";
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
ItemScrews //Construection,farm,indestrial,castle,residential
|
||||
ItemBagScrews //(LowChance)Construection,(LowChance)indestrial,supermarket
|
||||
ItemRSJ //Construection,farm,indestrial,castle
|
||||
ItemConcreteBlock //Construection,indestrial
|
||||
ItemMetalSheet //Construection,farm,indestrial,castle
|
||||
*/
|
||||
244
SQF/dayz_code/Configs/CfgMagazines/Items/Misc.hpp
Normal file
244
SQF/dayz_code/Configs/CfgMagazines/Items/Misc.hpp
Normal file
@@ -0,0 +1,244 @@
|
||||
class ItemZombieParts: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_ZOMBIEPARTS;
|
||||
model = "\z\addons\dayz_epoch\models\zombie_parts_bag_v2.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_zparts_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_ZOMBIEPARTS_DESC;
|
||||
};
|
||||
|
||||
class ItemHotwireKit: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_HOTWIREKIT;
|
||||
model = "\z\addons\dayz_epoch\models\hotwire.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_hotwire_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_HOTWIREKIT_DESC;
|
||||
weight = 2;
|
||||
};
|
||||
|
||||
class ItemCards : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "z\addons\dayz_communityassets\models\cards.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_cards_ca.paa";
|
||||
displayName = $STR_ITEM_NAME_CARDS;
|
||||
descriptionShort = $STR_ITEM_DESC_CARDS;
|
||||
};
|
||||
|
||||
class ItemKosmosSmokes : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\z\addons\dayz_communityassets\models\smokes_kosmos.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_kosmos_ca.paa";
|
||||
displayName = $STR_ITEM_NAME_KOSMOS_SMOKES;
|
||||
descriptionShort = $STR_ITEM_DESC_KOSMOS_SMOKES;
|
||||
};
|
||||
|
||||
class ItemKosmosSmokesOpen : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\z\addons\dayz_communityassets\models\smokes_open_k.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_smokes_open_k_ca.paa";
|
||||
displayName = $STR_ITEM_NAME_KOSMOS_SMOKES;
|
||||
descriptionShort = $STR_ITEM_DESC_KOSMOS_SMOKES_OPENED;
|
||||
};
|
||||
|
||||
class equip_nails : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_nails;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_nails;
|
||||
model = "\z\addons\dayz_communityassets\models\nails.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_nails_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class ItemScrews: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemScrews;//"Box of screws for metal"
|
||||
picture = "\z\addons\dayz_epoch_w\magazine\ui\m_screws_ca.paa";
|
||||
model = "\z\addons\dayz_epoch_w\magazine\dze_screwtray.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemScrews;//"Box of screws"
|
||||
};
|
||||
|
||||
class equip_duct_tape : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_duct_tape;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_duct_tape;
|
||||
model = "\z\addons\dayz_communityassets\models\duct_tape.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\tape.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_feathers : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_feathers;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_feathers;
|
||||
model = "\z\addons\dayz_communityassets\models\feather.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_feather_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_pvc_box : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_pvc_box;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_pvc_box;
|
||||
model = "\z\addons\dayz_communityassets\models\plastic_box.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_plastic_box_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_hobo_fishing_kit : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = "Hobo Fishing Kit";
|
||||
descriptionShort = "Hobo Fishing Kit, catches dem fishes";
|
||||
model = "\z\addons\dayz_communityassets\models\hobofishingkit.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_hobofishingkit_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_hose : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_hose;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_hose;
|
||||
model = "\z\addons\dayz_communityassets\models\hose.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_hose.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_hose_clamp : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_hose_clamp;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_hose_clamp;
|
||||
model = "\z\addons\dayz_communityassets\models\hose_clamp.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_hoseclamp_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class Item_coni : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_DESC_equip_con_i;
|
||||
descriptionShort = $STR_ITEM_NAME_equip_con_i;
|
||||
model = "z\addons\dayz_communityassets\models\connector_i.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_connector_i_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class Item_Connector_I : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_DESC_equip_con_i;
|
||||
descriptionShort = $STR_ITEM_NAME_equip_con_i;
|
||||
model = "z\addons\dayz_communityassets\models\connector_I.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_connector_I_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class Item_Connector_L : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_DESC_equip_con_l;
|
||||
descriptionShort = $STR_ITEM_NAME_equip_con_l;
|
||||
model = "z\addons\dayz_communityassets\models\connector_L.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_connector_L_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class Item_Connector_T : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_DESC_equip_con_t;
|
||||
descriptionShort = $STR_ITEM_NAME_equip_con_t;
|
||||
model = "z\addons\dayz_communityassets\models\connector_T.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_connector_T_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_tin_powder : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = "Tin of Powder";
|
||||
descriptionShort = "Tin of Powder has medicinal qualities";
|
||||
model = "\z\addons\dayz_communityassets\models\tin_powder.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_tin_powder_co.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_slugsinacan : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = "Slugs in a can";
|
||||
descriptionShort = "Slugs in a can";
|
||||
model = "\z\addons\dayz_communityassets\models\slugsinacan.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_sluginacan.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
//No models
|
||||
class equip_cable_tie : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_cable_tie;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_cable_tie;
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_cable_tie.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_needle : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_needle;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_needle;
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_needle.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_laser : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_laser;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_laser;
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_laser.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_weapon_rails: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_weapon_rails;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_weapon_rails;
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_part_somegeneric.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_rail_screws : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_rail_screws;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_rail_screws;
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_part_somegeneric.paa";
|
||||
type = 256;
|
||||
};
|
||||
@@ -0,0 +1,8 @@
|
||||
class equip_fuse : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_fuse;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_fuse;
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_fuse.paa";
|
||||
type = 256;
|
||||
};
|
||||
@@ -0,0 +1,8 @@
|
||||
class equip_part_camo : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_part_camo;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_part_camo;
|
||||
picture = "\z\addons\dayz_communityassets\textures\equip_part_camo.paa";
|
||||
type = 256;
|
||||
};
|
||||
@@ -0,0 +1,8 @@
|
||||
class equip_part_silencer : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_part_silencer;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_part_silencer;
|
||||
picture = "\z\addons\dayz_communityassets\textures\equip_silencer_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
@@ -0,0 +1,8 @@
|
||||
class equip_part_sniper_scope : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ATTACHMENT_NAME_Sniper_Scope;
|
||||
descriptionShort = $STR_ATTACHMENT_DESC_Sniper_Scope;
|
||||
picture = "\z\addons\dayz_communityassets\textures\equip_scope_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
@@ -0,0 +1,8 @@
|
||||
class equip_pipecap : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_pipecap;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_pipecap;
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_pipecap.paa";
|
||||
type = 256;
|
||||
};
|
||||
@@ -0,0 +1,8 @@
|
||||
class equip_rubber_tube : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_rubber_tube;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_rubber_tube;
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_rubber_tube.paa";
|
||||
type = 256;
|
||||
};
|
||||
60
SQF/dayz_code/Configs/CfgMagazines/Items/Ores.hpp
Normal file
60
SQF/dayz_code/Configs/CfgMagazines/Items/Ores.hpp
Normal file
@@ -0,0 +1,60 @@
|
||||
class PartOre: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ORE_NAME_IRON;
|
||||
model = "\z\addons\dayz_epoch\models\iron_ore.p3d";
|
||||
picture="\z\addons\dayz_epoch\pictures\equip_iron_ore_CA.paa";
|
||||
descriptionShort = $STR_ORE_NAME_IRON_DESC;
|
||||
weight = 1;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_265;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"fire"};
|
||||
requiretools[] = {"ItemSledge"};
|
||||
output[] = {{"PartGeneric",1},{"ItemWaterbottleUnfilled",1}};
|
||||
input[] = {{"PartOre",4},{"ItemWaterbottle",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class PartOreSilver: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ORE_NAME_SILVER;
|
||||
model = "\z\addons\dayz_epoch\models\silver_ore.p3d";
|
||||
picture="\z\addons\dayz_epoch\pictures\equip_silver_ore_CA.paa";
|
||||
descriptionShort = $STR_ORE_DESC;
|
||||
weight = 1;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_266;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"fire"};
|
||||
requiretools[] = {"ItemSledge"};
|
||||
output[] = {{"ItemSilverBar",1},{"ItemWaterbottleUnfilled",1}};
|
||||
input[] = {{"PartOreSilver",1},{"ItemWaterbottle",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class PartOreGold: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_ORE_NAME_GOLD;
|
||||
model = "\z\addons\dayz_epoch\models\gold_ore.p3d";
|
||||
picture="\z\addons\dayz_epoch\pictures\equip_gold_ore_CA.paa";
|
||||
descriptionShort = $STR_ORE_DESC;
|
||||
weight = 1;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_267;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"fire"};
|
||||
requiretools[] = {"ItemSledge"};
|
||||
output[] = {{"ItemGoldBar",1},{"ItemWaterbottleUnfilled",1}};
|
||||
input[] = {{"PartOreGold",1},{"ItemWaterbottle",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
57
SQF/dayz_code/Configs/CfgMagazines/Items/Paints.hpp
Normal file
57
SQF/dayz_code/Configs/CfgMagazines/Items/Paints.hpp
Normal file
@@ -0,0 +1,57 @@
|
||||
class equip_paint : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_paint;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_paint;
|
||||
picture = "\z\addons\dayz_communityassets\CraftingPlaceholders\equip_paint.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_paint_generic : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
picture = "\dayz_epoch_c\icons\equipment\equip_paint_generic.paa";
|
||||
displayName = $STR_DZE_EQUIP_PAINT_GENERIC_NAME;
|
||||
descriptionShort = $STR_DZE_EQUIP_PAINT_GENERIC_DESC;
|
||||
};
|
||||
class equip_paint_black : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
picture = "\dayz_epoch_c\icons\equipment\equip_paint_black.paa";
|
||||
displayName = $STR_DZE_EQUIP_PAINT_BLACK_NAME;
|
||||
descriptionShort = $STR_DZE_EQUIP_PAINT_BLACK_DESC;
|
||||
};
|
||||
class equip_paint_white : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
picture = "\dayz_epoch_c\icons\equipment\equip_paint_white.paa";
|
||||
displayName = $STR_DZE_EQUIP_PAINT_WHITE_NAME;
|
||||
descriptionShort = $STR_DZE_EQUIP_PAINT_WHITE_DESC;
|
||||
};
|
||||
class equip_paint_blue : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
picture = "\dayz_epoch_c\icons\equipment\equip_paint_blue.paa";
|
||||
displayName = $STR_DZE_EQUIP_PAINT_BLUE_NAME;
|
||||
descriptionShort = $STR_DZE_EQUIP_PAINT_BLUE_DESC;
|
||||
};
|
||||
class equip_paint_green : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
picture = "\dayz_epoch_c\icons\equipment\equip_paint_green.paa";
|
||||
displayName = $STR_DZE_EQUIP_PAINT_GREEN_NAME;
|
||||
descriptionShort = $STR_DZE_EQUIP_PAINT_GREEN_DESC;
|
||||
};
|
||||
class equip_paint_red : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
picture = "\dayz_epoch_c\icons\equipment\equip_paint_red.paa";
|
||||
displayName = $STR_DZE_EQUIP_PAINT_RED_NAME;
|
||||
descriptionShort = $STR_DZE_EQUIP_PAINT_RED_DESC;
|
||||
};
|
||||
166
SQF/dayz_code/Configs/CfgMagazines/Items/Planting.hpp
Normal file
166
SQF/dayz_code/Configs/CfgMagazines/Items/Planting.hpp
Normal file
@@ -0,0 +1,166 @@
|
||||
class ItemFertilizer: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_CRAFT_NAME_FERTILIZER;
|
||||
descriptionShort = $STR_CRAFT_DESC_FERTILIZER;
|
||||
weight = 0.1;
|
||||
picture = "\z\addons\dayz_epoch_w\magazine\ui\m_fertilizer_ca.paa";
|
||||
model = "\z\addons\dayz_epoch_w\magazine\dze_fertilizer.p3d";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class ItemPumpkinSeed: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_CRAFT_NAME_PUMPKIN_SEED;
|
||||
descriptionShort = $STR_CRAFT_DESC_PUMPKIN_SEED;
|
||||
weight = 0.1;
|
||||
model = "\z\addons\dayz_epoch\models\doc_child1.p3d"; // TODO: model + icon
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_child1_ca.paa";
|
||||
type = 256;
|
||||
class ItemActions {
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_CRAFT_PUMPKIN_PLANT;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {""};
|
||||
requiretools[] = {"ItemKnife"};
|
||||
output[] = {{"ItemPumpkinPlant",1},{"ItemWaterbottleUnfilled",1}};
|
||||
input[] = {{"ItemPumpkinSeed",1},{"ItemFertilizer",1},{"ItemWaterbottle",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemPumpkinPlant: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_CRAFT_NAME_PUMPKIN_PLANT;
|
||||
descriptionShort = $STR_CRAFT_DESC_PUMPKIN_PLANT;
|
||||
weight = 0.1;
|
||||
model = "\z\addons\dayz_epoch\models\doc_child1.p3d"; // TODO: model + icon
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_child1_ca.paa";
|
||||
type = 256;
|
||||
class ItemActions {
|
||||
class Build {
|
||||
text = $STR_CRAFT_PLANT_PUMPKIN_PLANT;
|
||||
buildText = $STR_CRAFT_NAME_PUMPKIN_PLANT;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool"};
|
||||
create = "Grave"; // TODO: model for Pumpkin Stage 1
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemHempSeed: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_CRAFT_NAME_HEMP_SEED;
|
||||
descriptionShort = $STR_CRAFT_DESC_HEMP_SEED;
|
||||
weight = 0.1;
|
||||
model = "\z\addons\dayz_epoch\models\doc_child2.p3d"; // TODO: model + icon
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_child2_ca.paa";
|
||||
type = 256;
|
||||
class ItemActions {
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_CRAFT_HEMP_PLANT;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {""};
|
||||
requiretools[] = {"ItemKnife"};
|
||||
output[] = {{"ItemHempPlant",1},{"ItemWaterbottleUnfilled",1}};
|
||||
input[] = {{"ItemHempSeed",1},{"ItemFertilizer",1},{"ItemWaterbottle",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemHempPlant: CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_CRAFT_NAME_HEMP_PLANT;
|
||||
descriptionShort = $STR_CRAFT_DESC_HEMP_PLANT;
|
||||
weight = 0.1;
|
||||
model = "\z\addons\dayz_epoch\models\doc_child2.p3d"; // TODO: model + icon
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_child2_ca.paa";
|
||||
type = 256;
|
||||
class ItemActions {
|
||||
class Build {
|
||||
text = $STR_CRAFT_PLANT_HEMP_PLANT;
|
||||
buildText = $STR_CRAFT_NAME_HEMP_PLANT;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool"};
|
||||
create = "MAP_c_fern"; // TODO: model for Hemp Stage 1
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemKiloHemp : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_EPOCH_KILOOFHEMP;
|
||||
descriptionShort = $STR_EPOCH_KILOOFHEMP_DESC;
|
||||
weight = 1;
|
||||
model = "z\addons\dayz_epoch\models\kilohemp.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_kilohemp_CA.paa";
|
||||
type = 256;
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_269b;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"ItemCanvas",1}};
|
||||
input[] = {{"ItemKiloHemp",1}};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_269a;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {""};
|
||||
requiretools[] = {"ItemKnife"};
|
||||
output[] = {{"ItemHempSeed",5}};
|
||||
input[] = {{"ItemKiloHemp",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemKiloTobacco : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_EPOCH_KILOTOBACCO;
|
||||
descriptionShort = $STR_EPOCH_KILOTOBACCO_DESC;
|
||||
weight = 1;
|
||||
model = "z\addons\dayz_epoch\models\kilohemp.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_kilohemp_CA.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class ItemKiloBlackTea : ItemKiloTobacco
|
||||
{
|
||||
displayName = $STR_EPOCH_KILOBLACKTEA;
|
||||
descriptionShort = $STR_EPOCH_KILOBLACKTEA_DESC;
|
||||
};
|
||||
|
||||
class ItemTobaccoLeafs : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_EPOCH_TOBACCO_LEAF;
|
||||
descriptionShort = $STR_EPOCH_TOBACCO_LEAF_DESC;
|
||||
model = "\z\addons\dayz_communityassets\models\comfrey.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_comfrey_CA.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_comfreyleafs : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_comfreyleafs;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_comfreyleafs;
|
||||
model = "\z\addons\dayz_communityassets\models\comfrey.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_comfrey_CA.paa";
|
||||
type = 256;
|
||||
};
|
||||
@@ -1,202 +0,0 @@
|
||||
class ItemSandbag : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\sandbags.p3d";
|
||||
picture = "\dayz_equip\textures\equip_sandbag_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_21;
|
||||
descriptionShort = $STR_EQUIP_DESC_21;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTION_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool"};
|
||||
consume[] = {"ItemSandbag"};
|
||||
create = "Sandbag1_DZ";
|
||||
//bypass RoadCheck
|
||||
byPass = "byPassRoadCheck";
|
||||
};
|
||||
/*
|
||||
class Build2
|
||||
{
|
||||
text = $STR_CREATE_STASH;
|
||||
script = "; [_id,'Build2'] spawn player_buildPlaceables;";
|
||||
require[] = {"ItemEtool"};
|
||||
consume[] = {"ItemSandbag"};
|
||||
create = "StashSmall";
|
||||
//Bypass collision test
|
||||
bypassCollision = "true";
|
||||
};
|
||||
*/
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_273;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"ItemSandbagLarge",1}};
|
||||
input[] = {{"ItemSandbag",3},{"ItemWire",1},{"ItemTankTrap",1}};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_274;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"sandbag_nest_kit",1}};
|
||||
input[] = {{"ItemSandbag",4},{"PartWoodPlywood",2},{"PartWoodLumber",4}};
|
||||
};
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_298;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"BagFenceRound_DZ_kit",1}};
|
||||
input[] = {{"ItemSandbag",1}};
|
||||
};
|
||||
/*
|
||||
class Crafting3
|
||||
{
|
||||
text = "Craft M240 Nest";
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox","M240_DZ"};
|
||||
output[] = {{"m240_nest_kit",1}};
|
||||
input[] = {{"ItemSandbag",4},{"ItemCanvas",1},{"PartWoodPlywood",4},{"PartWoodLumber",3}};
|
||||
inputweapons[] = {"M240_DZ"};
|
||||
};
|
||||
*/
|
||||
};
|
||||
};
|
||||
|
||||
// EPOCH ADDITIONS
|
||||
|
||||
class BagFenceRound_DZ_kit : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_21_ROUND;
|
||||
descriptionShort = $STR_EQUIP_DESC_21;
|
||||
model = "\dayz_equip\models\sandbags.p3d";
|
||||
picture = "\dayz_equip\textures\equip_sandbag_ca.paa";
|
||||
class ItemActions {
|
||||
class Build {
|
||||
text = $STR_EPOCH_PLAYER_299;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool"};
|
||||
create = "BagFenceRound_DZ";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_195;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"ItemSandbag",1}};
|
||||
input[] = {{"BagFenceRound_DZ_kit",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class sandbag_nest_kit: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_21_NEST;
|
||||
descriptionShort = $STR_EQUIP_DESC_21_NEST;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
weight = 50;
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool","ItemToolbox"};
|
||||
create = "SandNest_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemSandbagLarge : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_21_HBARRIER;
|
||||
descriptionShort = $STR_EQUIP_DESC_21_HBARRIER;
|
||||
model = "\dayz_equip\models\sandbags.p3d"; // TODO model
|
||||
picture = "\dayz_equip\textures\equip_sandbag_ca.paa";
|
||||
weight = 50;
|
||||
class ItemActions {
|
||||
class Build {
|
||||
text = $STR_EPOCH_PLAYER_273_3;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool"};
|
||||
create = "Land_HBarrier1_DZ";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_273_1;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"ItemSandbagExLarge",1}};
|
||||
input[] = {{"ItemSandbagLarge",3}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemSandbagExLarge : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_21_3XHBARRIER;
|
||||
descriptionShort = $STR_EQUIP_DESC_21_HBARRIER;
|
||||
model = "\dayz_equip\models\sandbags.p3d"; // TODO model
|
||||
picture = "\dayz_equip\textures\equip_sandbag_ca.paa";
|
||||
weight = 150;
|
||||
class ItemActions {
|
||||
class Build {
|
||||
text = $STR_EPOCH_PLAYER_273_4;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool"};
|
||||
create = "Land_HBarrier3_DZ";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_273_2;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"ItemSandbagExLarge5x",1}};
|
||||
input[] = {{"ItemSandbagExLarge",1},{"ItemSandbagLarge",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemSandbagExLarge5x : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EQUIP_NAME_21_5XHBARRIER;
|
||||
descriptionShort = $STR_EQUIP_DESC_21_HBARRIER;
|
||||
model = "\dayz_equip\models\sandbags.p3d"; // TODO model
|
||||
picture = "\dayz_equip\textures\equip_sandbag_ca.paa";
|
||||
weight = 200;
|
||||
class ItemActions {
|
||||
class Build {
|
||||
text = $STR_EPOCH_PLAYER_273_5;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemEtool"};
|
||||
create = "Land_HBarrier5_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -1,10 +0,0 @@
|
||||
class ItemStone: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemStone;//"Rough Stone"
|
||||
picture = "\z\addons\dayz_buildings\equip\rocks.paa";
|
||||
model = "z\addons\dayz_buildings\models\rocks.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemStone;//"Rough Stone"
|
||||
};
|
||||
@@ -1,24 +0,0 @@
|
||||
class ItemTankTrap : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\tank_trap_kit.p3d";
|
||||
picture = "\dayz_equip\textures\equip_tanktrap_kit_CA.paa";
|
||||
displayName = $STR_EQUIP_NAME_22;
|
||||
descriptionShort = $STR_EQUIP_DESC_22;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTION_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"ItemTankTrap"};
|
||||
create = "Hedgehog_DZ";
|
||||
byPass = "byPassRoadCheck";
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -1,108 +0,0 @@
|
||||
class ItemTent : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\tentbag_gear.p3d";
|
||||
picture = "\dayz_equip\textures\equip_tentbag_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_20;
|
||||
descriptionShort = $STR_EQUIP_DESC_20;
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_PITCH_TENT;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "TentStorage";
|
||||
//Bypass collision test
|
||||
bypassCollision = "true";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_270;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"desert_net_kit",1}};
|
||||
input[] = {{"ItemTent",2},{"equip_tent_poles",2}};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_271;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"forest_net_kit",1}};
|
||||
input[] = {{"ItemTent",2},{"equip_tent_poles",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemDomeTent : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\tentbag_gear.p3d";
|
||||
picture = "\dayz_equip\textures\equip_tentbag_ca.paa";
|
||||
displayName = $STR_VEH_NAME_DOME_TENT;
|
||||
descriptionShort = $STR_EQUIP_DESC_20;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_PITCH_DOME_TENT;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "DomeTentStorage";
|
||||
//Bypass collision test
|
||||
bypassCollision = "true";
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_271;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"forest_net_kit",1}};
|
||||
input[] = {{"ItemDomeTent",2},{"equip_tent_poles",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
// EPOCH ADDITION
|
||||
|
||||
class ItemDesertTent : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
model = "\dayz_equip\models\tentbag_gear.p3d";
|
||||
picture = "\dayz_equip\textures\equip_tentbag_ca.paa";
|
||||
displayName = $STR_VEH_NAME_DESERT_TENT;
|
||||
descriptionShort = $STR_EQUIP_DESC_20;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_PITCH_DESERT_TENT;
|
||||
script = "spawn player_build;";
|
||||
require[] = {};
|
||||
create = "DesertTentStorage";
|
||||
};
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_270;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"desert_net_kit",1}};
|
||||
input[] = {{"ItemDesertTent",2},{"equip_tent_poles",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
122
SQF/dayz_code/Configs/CfgMagazines/Items/Textiles.hpp
Normal file
122
SQF/dayz_code/Configs/CfgMagazines/Items/Textiles.hpp
Normal file
@@ -0,0 +1,122 @@
|
||||
class ItemCanvas: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_CANVAS;
|
||||
model = "\z\addons\dayz_epoch\models\canvas.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_canvas_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_CANVAS_DESC;
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_190;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"ItemTent",1}};
|
||||
input[] = {{"ItemCanvas",2},{"equip_tent_poles",2}};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_191;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"ItemDesertTent",1}};
|
||||
input[] = {{"ItemCanvas",3},{"equip_tent_poles",2}};
|
||||
};
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_192;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"ItemDomeTent",1}};
|
||||
input[] = {{"ItemCanvas",3},{"equip_tent_poles",2}};
|
||||
};
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_193;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"sun_shade_kit",1}};
|
||||
input[] = {{"ItemCanvas",1},{"PartWoodLumber",4}};
|
||||
};
|
||||
class Crafting4
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_194;
|
||||
script = ";['Crafting4','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"ItemBurlap",1}};
|
||||
input[] = {{"ItemCanvas",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
class ItemBurlap: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_BURLAP;
|
||||
model = "\z\addons\dayz_epoch\models\burlap.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_burlap_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_BURLAP_DESC;
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_195;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"sand"}; // todo add sand requirement
|
||||
requiretools[] = {"ItemEtool","ItemToolbox"};
|
||||
output[] = {{"ItemSandbag",1}};
|
||||
input[] = {{"ItemBurlap",3}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class equip_rag : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_rag;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_rag;
|
||||
model = "\z\addons\dayz_communityassets\models\rag_clean.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_rag_clean_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_string : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_string;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_string;
|
||||
model = "\z\addons\dayz_communityassets\models\string.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_string_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_rope : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_rope;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_rope;
|
||||
model = "\z\addons\dayz_communityassets\models\rope.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_rope_ca.paa";
|
||||
type = 256;
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_BLD_craft_equip_rope;//"String"
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemKnife"};
|
||||
output[] = {{"equip_string",2}};
|
||||
input[] = {{"equip_rope",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
80
SQF/dayz_code/Configs/CfgMagazines/Items/ToolCrafting.hpp
Normal file
80
SQF/dayz_code/Configs/CfgMagazines/Items/ToolCrafting.hpp
Normal file
@@ -0,0 +1,80 @@
|
||||
class equip_lever : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
picture = "\dayz_equip\textures\equip_lever.paa";
|
||||
model = "\z\addons\dayz_epoch_w\magazine\dze_handle.p3d";
|
||||
descriptionShort = $STR_EQUIP_DESC_LEVER;
|
||||
displayName = $STR_EQUIP_NAME_LEVER;
|
||||
};
|
||||
|
||||
class ItemSledgeHead : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_SLEDGEHAMMERHEAD;
|
||||
model = "\z\addons\dayz_epoch\models\sledge_head.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_sledge_head_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_SLEDGEHAMMERHEAD_DESC;
|
||||
weight = 9;
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_275;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {};
|
||||
outputweapons[] = {"ItemSledge"};
|
||||
input[] = {{"ItemSledgeHead",1},{"ItemSledgeHandle",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemSledgeHandle : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_SLEDGEHAMMERHANDLE;
|
||||
model = "\z\addons\dayz_epoch\models\sledge_handle.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_sledge_handle_ca.paa";
|
||||
descriptionShort = $STR_EPOCH_SLEDGEHAMMERHANDLE_DESC;
|
||||
weight = 1;
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_275;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {};
|
||||
outputweapons[] = {"ItemSledge"};
|
||||
input[] = {{"ItemSledgeHead",1},{"ItemSledgeHandle",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class equip_Crossbow_Kit : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_CROSSBOW_KIT;
|
||||
descriptionShort = $STR_ITEM_DESC_CROSSBOW_KIT;
|
||||
model = "\z\addons\community_crossbow\models\Crossbow_kit.p3d";
|
||||
picture = "\z\addons\community_crossbow\textures\Crossbow_kit.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_crossbow_stock : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = "Crossbow (Stock)";
|
||||
descriptionShort="You require a Crossbow String kit to craft this weapon";
|
||||
model = "z\addons\community_crossbow\models\crossbow_stock.p3d";
|
||||
picture = "\z\addons\community_crossbow\icons\crossbow_stock.paa";
|
||||
type = 256;
|
||||
};
|
||||
@@ -1,74 +0,0 @@
|
||||
class ItemTrapTripwireCans : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "z\addons\dayz_communityassets\models\trap_tripwire_dropped_can.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_trap_tripwire_can.paa";
|
||||
displayName = $STR_ITEM_NAME_TRIPWIRE_CANS;
|
||||
descriptionShort = $STR_ITEM_DESC_TRIPWIRE_CANS;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTION_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"ItemTrapTripwireCans"};
|
||||
create = "Trap_Cans";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemTrapTripwireFlare : ItemTrapTripwireCans
|
||||
{
|
||||
model = "z\addons\dayz_communityassets\models\trap_tripwire_dropped_flare.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_trap_tripwire_flare.paa";
|
||||
displayName = $STR_ITEM_NAME_TRIPWIRE_FLARE;
|
||||
descriptionShort = $STR_ITEM_DESC_TRIPWIRE_FLARE;
|
||||
|
||||
class ItemActions : ItemActions
|
||||
{
|
||||
class Build : Build
|
||||
{
|
||||
consume[] = {"ItemTrapTripwireFlare"};
|
||||
create = "TrapTripwireFlare";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemTrapTripwireGrenade : ItemTrapTripwireCans
|
||||
{
|
||||
model = "z\addons\dayz_communityassets\models\trap_tripwire_dropped_grenade.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_trap_tripwire_grenade.paa";
|
||||
displayName = $STR_ITEM_NAME_TRIPWIRE_GRENADE;
|
||||
descriptionShort = $STR_ITEM_DESC_TRIPWIRE_GRENADE;
|
||||
|
||||
class ItemActions : ItemActions
|
||||
{
|
||||
class Build : Build
|
||||
{
|
||||
consume[] = {"ItemTrapTripwireGrenade"};
|
||||
create = "TrapTripwireGrenade";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemTrapTripwireSmoke : ItemTrapTripwireCans
|
||||
{
|
||||
model = "z\addons\dayz_communityassets\models\trap_tripwire_dropped_smoke.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_trap_tripwire_smoke.paa";
|
||||
displayName = $STR_ITEM_NAME_TRIPWIRE_SMOKE;
|
||||
descriptionShort = $STR_ITEM_DESC_TRIPWIRE_SMOKE;
|
||||
|
||||
class ItemActions : ItemActions
|
||||
{
|
||||
class Build : Build
|
||||
{
|
||||
consume[] = {"ItemTrapTripwireSmoke"};
|
||||
create = "TrapTripwireSmoke";
|
||||
};
|
||||
};
|
||||
};
|
||||
93
SQF/dayz_code/Configs/CfgMagazines/Items/VehicleParts.hpp
Normal file
93
SQF/dayz_code/Configs/CfgMagazines/Items/VehicleParts.hpp
Normal file
@@ -0,0 +1,93 @@
|
||||
class PartFueltank : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\fueltank.p3d";
|
||||
picture = "\dayz_equip\textures\equip_fueltank_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_8;
|
||||
descriptionShort = $STR_EQUIP_DESC_8;
|
||||
class ItemActions {
|
||||
class Crafting {
|
||||
text = $STR_EPOCH_PLAYER_212;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"PartGeneric",1}};
|
||||
input[] = {{"PartFueltank",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class PartWheel : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\wheel.p3d";
|
||||
picture = "\dayz_equip\textures\equip_wheel_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_9;
|
||||
descriptionShort = $STR_EQUIP_DESC_9;
|
||||
};
|
||||
|
||||
class PartEngine : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\engine.p3d";
|
||||
picture = "\dayz_equip\textures\equip_engine_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_11;
|
||||
descriptionShort = $STR_EQUIP_DESC_11;
|
||||
class ItemActions {
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_212;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"PartGeneric",2}};
|
||||
input[] = {{"PartEngine",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class PartVRotor : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\vrotor.p3d";
|
||||
picture = "\dayz_equip\textures\equip_vrotor_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_32;
|
||||
descriptionShort = $STR_EQUIP_DESC_32;
|
||||
class ItemActions {
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_212;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"PartGeneric",3}};
|
||||
input[] = {{"PartVRotor",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class PartGlass : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\carglass.p3d";
|
||||
picture = "\dayz_equip\textures\equip_carglass_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_30;
|
||||
descriptionShort = $STR_EQUIP_DESC_30;
|
||||
};
|
||||
|
||||
// PartGeneric can be found under Items\Metal.hpp
|
||||
@@ -1,49 +0,0 @@
|
||||
class ItemWaterBottleUnfilled : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\waterbottle_gear.p3d";
|
||||
picture = "\dayz_equip\textures\equip_waterbottle_empty_ca.paa";
|
||||
displayName = $STR_EQUIP_NAME_13;
|
||||
descriptionShort = $STR_EQUIP_DESC_13;
|
||||
|
||||
containerWater = "ItemWaterBottle";
|
||||
containerWaterSafe = "ItemWaterBottleSafe";
|
||||
containerWaterInfected = "ItemWaterBottleInfected";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Fill
|
||||
{
|
||||
text = $STR_ACTIONS_FILL_W;
|
||||
script = "spawn player_fillWater;";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class ItemWaterBottleDmg : CA_Magazine //We don't have a damaged canteen image/model , so the regular bottle image is used for now
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\waterbottle_gear.p3d";
|
||||
picture = "\dayz_equip\textures\equip_waterbottle_empty_ca.paa";
|
||||
displayName = $STR_ITEMWATERBOTTLEDMG_CODE_NAME;
|
||||
descriptionShort = $STR_ITEMWATERBOTTLEDMG_CODE_DESC;
|
||||
sfx = "bandage";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting {
|
||||
text = $STR_ACTIONS_FIX_W;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {};
|
||||
output[] = {{"ItemWaterbottleUnfilled",1}};
|
||||
input[] = {{"ItemWaterBottleDmg",1},{"equip_duct_tape",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -1,24 +0,0 @@
|
||||
class ItemWire : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\dayz_equip\models\Fence_wire_kit.p3d";
|
||||
picture = "\dayz_equip\textures\equip_fencewire_kit_CA.paa";
|
||||
displayName = $STR_EQUIP_NAME_23;
|
||||
descriptionShort = $STR_EQUIP_DESC_23;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTION_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"ItemWire"};
|
||||
create = "Fort_RazorWire"; // vanilla uses Wire_cat1
|
||||
byPass = "byPassRoadCheck";
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -108,4 +108,222 @@ class PartWoodPile : CA_Magazine
|
||||
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class PartPlankPack: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_LUMBERPACK;
|
||||
model = "\z\addons\dayz_epoch\models\plank_pack.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_lumber_pack_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_LUMBERPACK_DESC;
|
||||
weight = 6;
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_251;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"sawmill"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"PartWoodLumber",3}};
|
||||
input[] = {{"PartPlankPack",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class PartPlywoodPack: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_PLYWOODPACK;
|
||||
model = "\z\addons\dayz_epoch\models\plywood_pack.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_plywood_pack_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_PLYWOODPACK_DESC;
|
||||
weight = 12;
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_251;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"sawmill"};
|
||||
requiretools[] = {"ItemToolbox","ItemKnife"};
|
||||
output[] = {{"PartWoodPlywood",3}};
|
||||
input[] = {{"PartPlywoodPack",1}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class PartWoodLumber: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_LUMBER;
|
||||
model = "\z\addons\dayz_epoch\models\planks.p3d";
|
||||
picture= "\z\addons\dayz_epoch\pictures\equip_wood_planks_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_LUMBER_DESC;
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_254;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"sawmill"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"PartWoodPlywood",1}};
|
||||
input[] = {{"PartWoodLumber",2}};
|
||||
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_255;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"bulk_empty",1}};
|
||||
input[] = {{"PartWoodLumber",2},{"PartGeneric",1}};
|
||||
|
||||
};
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_256;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"deer_stand_kit",1}};
|
||||
input[] = {{"PartWoodLumber",8},{"PartWoodPile",2}};
|
||||
|
||||
};
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_257;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"ItemWoodStairs",1}};
|
||||
input[] = {{"PartWoodLumber",8}};
|
||||
|
||||
};
|
||||
class Crafting4
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_258;
|
||||
script = ";['Crafting4','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"ItemWoodLadder",1}};
|
||||
input[] = {{"PartWoodLumber",8}};
|
||||
|
||||
};
|
||||
class Crafting5
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_259;
|
||||
Script = ";['Crafting5','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"sawmill"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"PartPlankPack",1}};
|
||||
input[] = {{"PartWoodLumber",3}};
|
||||
};
|
||||
class Crafting6
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_277;
|
||||
Script = ";['Crafting6','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"ItemGunRackKit",1}};
|
||||
input[] = {{"PartWoodLumber",6}};
|
||||
};
|
||||
class Crafting7
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_304;
|
||||
Script = ";['Crafting7','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"ItemWoodCrateKit",1}};
|
||||
input[] = {{"PartWoodLumber",6}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class PartWoodPlywood: CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_PLYWOOD;
|
||||
model = "\z\addons\dayz_epoch\models\plywood.p3d";
|
||||
picture= "\z\addons\dayz_epoch\pictures\equip_plywood_CA.paa";
|
||||
descriptionShort = $STR_EPOCH_PLYWOOD_DESC;
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_260;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"workbench_kit",1}};
|
||||
input[] = {{"PartWoodPlywood",1},{"PartWoodLumber",2}};
|
||||
};
|
||||
class Crafting1
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_261;
|
||||
script = ";['Crafting1','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"wood_shack_kit",1}};
|
||||
input[] = {{"PartWoodPlywood",4},{"PartWoodLumber",4}};
|
||||
};
|
||||
class Crafting2
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_262;
|
||||
script = ";['Crafting2','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"ItemWoodFloorQuarter",1}};
|
||||
input[] = {{"PartWoodPlywood",3},{"PartWoodLumber",3}};
|
||||
};
|
||||
class Crafting3
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_263;
|
||||
script = ";['Crafting3','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop"};
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar"};
|
||||
output[] = {{"ItemWoodWallThird",1}};
|
||||
input[] = {{"PartWoodPlywood",3},{"PartWoodLumber",3}};
|
||||
};
|
||||
class Crafting4
|
||||
{
|
||||
text = $STR_EPOCH_PLAYER_264;
|
||||
Script = ";['Crafting4','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"sawmill"};
|
||||
requiretools[] = {"ItemToolbox"};
|
||||
output[] = {{"PartPlywoodPack",1}};
|
||||
input[] = {{"PartWoodPlywood",3}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class equip_wood_pallet : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_wood_pallet;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_wood_pallet;
|
||||
model = "\z\addons\dayz_communityassets\models\wooden_pallet.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_wpallet_ca.paa";
|
||||
type = 256;
|
||||
};
|
||||
|
||||
class equip_crate : CA_Magazine {
|
||||
scope = public;
|
||||
count = 1;
|
||||
displayName = $STR_ITEM_NAME_equip_crate;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_crate;
|
||||
model = "\z\addons\dayz_communityassets\models\crate.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_crate.paa";
|
||||
type = 256;
|
||||
};
|
||||
@@ -1,22 +0,0 @@
|
||||
class ItemWorkBench : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_BLD_name_ItemWorkBench;//"Work Bench (Packed)"
|
||||
model = "z\addons\dayz_buildings\models\workbench_flat.p3d";
|
||||
picture = "\z\addons\dayz_buildings\equip\item_workbench.paa"; // add to PBO
|
||||
descriptionShort = $STR_BLD_desc_ItemWorkBench;//"A Folded Workbench, required for House Building and Some Crafting"
|
||||
vehicle = "WorkBench";
|
||||
sfx = "tentunpack";
|
||||
|
||||
class ItemActions {
|
||||
class Build {
|
||||
text = $STR_BLD_build_ItemWorkBench;//"place WorkBench"
|
||||
script = "; ['ItemWorkBench','Build'] spawn player_buildPlaceables;";
|
||||
require[] = {};
|
||||
consume[] = {"ItemWorkBench"};
|
||||
create = "WorkBench";
|
||||
};
|
||||
};
|
||||
};
|
||||
@@ -1,11 +0,0 @@
|
||||
class equip_brick : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\z\addons\dayz_communityassets\models\brick.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_brick.paa";
|
||||
displayName = $STR_ITEM_NAME_equip_brick;
|
||||
descriptionShort = $STR_ITEM_DESC_equip_brick;
|
||||
};
|
||||
@@ -1,10 +0,0 @@
|
||||
class equip_lever : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
picture = "\dayz_equip\textures\equip_lever.paa";
|
||||
model = "\z\addons\dayz_epoch_w\magazine\dze_handle.p3d";
|
||||
descriptionShort = $STR_EQUIP_DESC_LEVER;
|
||||
displayName = $STR_EQUIP_NAME_LEVER;
|
||||
};
|
||||
Reference in New Issue
Block a user