CFG WEAPONS DONE

This commit is contained in:
icomrade
2016-02-18 13:58:02 -05:00
parent 81d5976031
commit dfb7bba743
395 changed files with 55004 additions and 1384 deletions

View File

@@ -0,0 +1,52 @@
class ItemSledge: ItemCore
{
scope=2;
displayName=$STR_EQUIP_SLEDGE;
model="\z\addons\dayz_epoch\models\sledge_mag.p3d";
picture="\z\addons\dayz_epoch\pictures\equip_sledge_CA.paa";
descriptionShort=$STR_EQUIP_SLEDGE_DESC;
class ItemActions
{
class Toolbelt
{
text=$STR_EPOCH_PLAYER_295;
script="spawn player_addToolbelt;";
use[]=
{
"ItemSledge"
};
output[]=
{
"MeleeSledge"
};
};
/* Lets take this out for now and see how it goes.
class MineOre
{
text="Mine Ore";
script="spawn player_mineOre;";
};
*/
};
};
class ItemSledgeHammerBroken : ItemCore
{
scope = public;
model = "z\addons\dayz_communityweapons\models\sledge_hammer\sledgehammer.p3d";
picture = "\z\addons\dayz_communityweapons\models\sledge_hammer\sledgehammer.paa";
displayName = $STR_name_ItemSledgeHammerBroken;
descriptionShort = $STR_desc_ItemSledgeHammerBroken;
fixedTool = "ItemSledgeHammer";
class ItemActions
{
class Toolbelt
{
text = $STR_ACTIONS_FIX_SLEDGE_HAMMER;
script = "spawn player_fixHatchet;";
};
};
};