plot deed fixes

This commit is contained in:
[VB]AWOL
2013-11-24 18:54:13 -06:00
parent b065aa9db3
commit 81f2027491

View File

@@ -288,13 +288,15 @@ class CfgMagazines {
scope = 2; scope = 2;
count = 1; count = 1;
type = 256; type = 256;
displayName = "A Plot Deed"; // TODO: localize displayName = "Plot Deed"; // TODO: localize
model = "\z\addons\dayz_epoch\models\doc_generic.p3d"; model = "\z\addons\dayz_epoch\models\doc_generic.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_doc_generic_ca.paa"; picture = "\z\addons\dayz_epoch\pictures\equip_doc_generic_ca.paa";
descriptionShort = "Deed to a plot of land, similar to a plot pole."; // TODO: localize descriptionShort = "Deed to a plot of land, similar to a plot pole."; // TODO: localize
weight = 0.1; weight = 0.1;
sfx = "document"; sfx = "document";
class Crafting class ItemActions
{
class Crafting
{ {
text = "Craft Plot Pole"; text = "Craft Plot Pole";
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;"; script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
@@ -303,6 +305,7 @@ class CfgMagazines {
output[] = {{"30m_plot_kit",1}}; output[] = {{"30m_plot_kit",1}};
input[] = {{"ItemPlotDeed",1},{"ItemGoldBar10oz",2}}; input[] = {{"ItemPlotDeed",1},{"ItemGoldBar10oz",2}};
}; };
};
}; };