mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
CFG WEAPONS DONE
This commit is contained in:
44
SQF/dayz_code/Configs/CfgMagazines/Magazines/Misc.hpp
Normal file
44
SQF/dayz_code/Configs/CfgMagazines/Magazines/Misc.hpp
Normal file
@@ -0,0 +1,44 @@
|
||||
//CZ550
|
||||
class 5x_22_LR_17_HMR;
|
||||
class 5Rnd_17HMR : 5x_22_LR_17_HMR
|
||||
{
|
||||
model = "\dayz_equip\models\mag5rnd.p3d";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
COMBINE_MAG
|
||||
};
|
||||
};
|
||||
|
||||
//Lee-Enfield
|
||||
class 10x_303;
|
||||
class 10Rnd_303British : 10x_303
|
||||
{
|
||||
model = "\dayz_equip\models\mag10rnd.p3d";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
COMBINE_MAG
|
||||
};
|
||||
};
|
||||
|
||||
//Winchester 1866
|
||||
class 15Rnd_W1866_Slug : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
|
||||
model = "\z\addons\dayz_communityassets\models\winammo.p3d";
|
||||
picture = "\z\addons\dayz_communityassets\pictures\equip_winammo_ca.paa";
|
||||
displayName = $STR_MAG_NAME_2;
|
||||
descriptionShort = $STR_MAG_DESC_2;
|
||||
|
||||
ammo = B_1866_Slug;
|
||||
count = 15;
|
||||
initSpeed = 396;
|
||||
displayNameShort = "Slug";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
COMBINE_MAG
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user