Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgMagazines/DZE/Currency/CopperBar.hpp
A Man 8b6725f77d Fixed CopperBar Display Text (#1701)
The Display text to craft  1x 10oz copper bar was not visible
2016-06-20 21:43:34 -04:00

39 lines
1.1 KiB
C++

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}};
};
};
};