mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
+ Increased raise horde distance to 65m. + decreased raise horde action timer to 7 seconds. + sync with 1.7.6.1 CE
251 lines
5.2 KiB
C++
251 lines
5.2 KiB
C++
class CfgWeapons {
|
|
class ItemCore;
|
|
class ItemMap_Debug: ItemCore {
|
|
descriptionshort = "Debug Map - Admin use only";
|
|
displayname = "Map";
|
|
picture = "\ca\ui\data\gear_picture_map_ca.paa";
|
|
scope = 2;
|
|
simulation = "ItemMap";
|
|
class Library {
|
|
libtextdesc = "Debug Map - Admin use only";
|
|
};
|
|
};
|
|
|
|
class ItemCompass: ItemCore {
|
|
model="z\addons\dayz_communityassets\models\compass.p3d";
|
|
};
|
|
|
|
class Crossbow;
|
|
class Crossbow_DZ : Crossbow {
|
|
magazines[] =
|
|
{
|
|
"Quiver",
|
|
"WoodenArrow"
|
|
};
|
|
};
|
|
class MeleeWeapon;
|
|
class MeleeHatchet: MeleeWeapon
|
|
{
|
|
scope=2;
|
|
autoreload=1;
|
|
magazineReloadTime=0;
|
|
model="\dayz_weapons\models\Hatchet_weaponized";
|
|
picture="\dayz_equip\textures\equip_hatchet_CA.paa";
|
|
displayName="$STR_EQUIP_NAME_41";
|
|
magazines[]=
|
|
{
|
|
"Hatchet_Swing"
|
|
};
|
|
handAnim[]=
|
|
{
|
|
"OFP2_ManSkeleton",
|
|
"\dayz_weapons\anim\melee_hatchet_holding.rtm"
|
|
};
|
|
class ItemActions
|
|
{
|
|
class Use
|
|
{
|
|
text="$STR_ACTIONS_CHOPWOOD";
|
|
script="spawn player_chopWood;";
|
|
};
|
|
class Toolbelt
|
|
{
|
|
text="Add to Toolbelt";
|
|
script="spawn player_addToolbelt;";
|
|
use[]=
|
|
{
|
|
"MeleeHatchet"
|
|
};
|
|
output[]=
|
|
{
|
|
"ItemHatchet"
|
|
};
|
|
};
|
|
class Drop
|
|
{
|
|
text="Drop Hatchet";
|
|
script="spawn player_dropWeapon;";
|
|
use[]=
|
|
{
|
|
"Hatchet_Swing"
|
|
};
|
|
};
|
|
};
|
|
class Library
|
|
{
|
|
libTextDesc="$STR_EQUIP_DESC_41";
|
|
};
|
|
descriptionShort="$STR_EQUIP_DESC_41";
|
|
};
|
|
class MeleeCrowbar: MeleeHatchet
|
|
{
|
|
scope=2;
|
|
autoreload=1;
|
|
magazineReloadTime=0;
|
|
model="\dayz_weapons\models\crowbar_weaponized";
|
|
picture="\dayz_weapons\textures\equip_crowbar_CA.paa";
|
|
displayName="Crowbar";
|
|
magazines[]=
|
|
{
|
|
"Crowbar_Swing"
|
|
};
|
|
class ItemActions
|
|
{
|
|
class Toolbelt
|
|
{
|
|
text="Add to Toolbelt";
|
|
script="spawn player_addToolbelt;";
|
|
use[]=
|
|
{
|
|
"MeleeCrowbar"
|
|
};
|
|
output[]=
|
|
{
|
|
"ItemCrowbar"
|
|
};
|
|
};
|
|
class Drop
|
|
{
|
|
text="Drop Crowbar";
|
|
script="spawn player_dropWeapon;";
|
|
use[]=
|
|
{
|
|
"Crowbar_Swing"
|
|
};
|
|
};
|
|
};
|
|
class Library
|
|
{
|
|
libTextDesc="A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on one or both ends for removing nails.";
|
|
};
|
|
descriptionShort="A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on one or both ends for removing nails.";
|
|
};
|
|
class ItemCrowbar: ItemCore
|
|
{
|
|
scope=2;
|
|
displayName="Crowbar";
|
|
model="\dayz_equip\models\crowbar.p3d";
|
|
picture="\dayz_weapons\textures\equip_crowbar_CA.paa";
|
|
descriptionShort="A tool consisting of a metal bar with a single curved end and flattened points, often with a small fissure on one or both ends for removing nails.";
|
|
class ItemActions
|
|
{
|
|
class Toolbelt
|
|
{
|
|
text="Remove from Toolbelt";
|
|
script="spawn player_addToolbelt;";
|
|
use[]=
|
|
{
|
|
"ItemCrowbar"
|
|
};
|
|
output[]=
|
|
{
|
|
"MeleeCrowbar"
|
|
};
|
|
};
|
|
};
|
|
};
|
|
class MeleeMachete: MeleeHatchet
|
|
{
|
|
scope=2;
|
|
autoreload=1;
|
|
magazineReloadTime=0;
|
|
model="\z\addons\dayz_communityassets\models\machete_weaponized.p3d";
|
|
picture="\z\addons\dayz_communityassets\pictures\equip_machete_CA.paa";
|
|
displayName="Machete";
|
|
magazines[]=
|
|
{
|
|
"Machete_Swing"
|
|
};
|
|
class ItemActions
|
|
{
|
|
class Toolbelt
|
|
{
|
|
text="Add to Toolbelt";
|
|
script="spawn player_addToolbelt;";
|
|
use[]=
|
|
{
|
|
"MeleeMachete"
|
|
};
|
|
output[]=
|
|
{
|
|
"ItemMachete"
|
|
};
|
|
};
|
|
class Drop
|
|
{
|
|
text="Drop Machete";
|
|
script="spawn player_dropWeapon;";
|
|
use[]=
|
|
{
|
|
"Machete_Swing"
|
|
};
|
|
};
|
|
};
|
|
class Library
|
|
{
|
|
libTextDesc="";
|
|
};
|
|
descriptionShort="An agricultural tool turned into a weapon, the Machete may be less versatile than the common hatchet, but it packs a punch.";
|
|
};
|
|
class ItemMachete: ItemCore
|
|
{
|
|
scope=2;
|
|
displayName="Machete";
|
|
model="\z\addons\dayz_communityassets\models\machete.p3d";
|
|
picture="\z\addons\dayz_communityassets\pictures\equip_machete_CA.paa";
|
|
descriptionShort="An agricultural tool turned into a weapon, the Machete may be less versatile than the common hatchet, but it packs a punch.";
|
|
class ItemActions
|
|
{
|
|
class Toolbelt
|
|
{
|
|
text="Remove from Toolbelt";
|
|
script="spawn player_addToolbelt;";
|
|
use[]=
|
|
{
|
|
"ItemMachete"
|
|
};
|
|
output[]=
|
|
{
|
|
"MeleeMachete"
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
class GrenadeLauncher; // External class reference
|
|
class Flare : GrenadeLauncher {
|
|
class ThrowMuzzle;
|
|
class MolotovCocktailMuzzle : ThrowMuzzle {
|
|
displayName = "$STR_ACTION_THROW";
|
|
magazines[] = {
|
|
"TrashJackDaniels",
|
|
"ItemSodaEmpty",
|
|
"TrashTinCan",
|
|
"FoodCanGriffEmpty",
|
|
"FoodCanBadguyEmpty",
|
|
"FoodCanBoneboyEmpty",
|
|
"FoodCanCornEmpty",
|
|
"FoodCanCurgonEmpty",
|
|
"FoodCanDemonEmpty",
|
|
"FoodCanFraggleosEmpty",
|
|
"FoodCanHerpyEmpty",
|
|
"FoodCanOrlokEmpty",
|
|
"FoodCanPowellEmpty",
|
|
"FoodCanTylersEmpty",
|
|
"FoodCanUnlabeledEmpty",
|
|
"ItemSodaCokeEmpty",
|
|
"ItemSodaPepsiEmpty",
|
|
"ItemSodaMdewEmpty",
|
|
"ItemSodaMtngreenEmpty",
|
|
"ItemSodaR4z0rEmpty",
|
|
"ItemSodaClaysEmpty",
|
|
"ItemSodaSmashtEmpty",
|
|
"ItemSodaDrwasteEmpty",
|
|
"ItemSodaLemonadeEmpty",
|
|
"ItemSodaLvgEmpty",
|
|
"ItemSodaMzlyEmpty",
|
|
"ItemSodaRabbitEmpty"
|
|
};
|
|
};
|
|
};
|
|
}; |