mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
- Add RSASS, MSR, XM2010 normal, SD, NV and TWS versions - SD versions have a slightly slower bullet speed as the non sd versions. Server Admins have to be careful with adding the SD versions to not hurt the server balance. - Remove old AS50 ammo config, it is not needed any longer, also switch to the correct AS50 magazine classname. Thx @AlwarrenSidh for the weapons.
98 lines
1.6 KiB
C++
98 lines
1.6 KiB
C++
//CZ550
|
|
class 5x_22_LR_17_HMR;
|
|
class 5Rnd_17HMR : 5x_22_LR_17_HMR
|
|
{
|
|
displayName = $STR_DZ_MAG_5RND_17HMR_NAME;
|
|
descriptionShort = $STR_DZ_MAG_5RND_17HMR_DESC;
|
|
|
|
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";
|
|
displayName = $STR_DZ_MAG_10RND_303BRITISH_NAME;
|
|
|
|
class ItemActions
|
|
{
|
|
COMBINE_MAG
|
|
};
|
|
};
|
|
|
|
//M107
|
|
class 10Rnd_127x99_m107 : CA_Magazine
|
|
{
|
|
displayName = $STR_DZ_MAG_10Rnd_127x99_m107_NAME;
|
|
|
|
cartridgeName = "127x99";
|
|
|
|
class ItemActions
|
|
{
|
|
COMBINE_MAG
|
|
};
|
|
};
|
|
//KSVK
|
|
class 5Rnd_127x108_KSVK : CA_Magazine
|
|
{
|
|
displayName = $STR_DZ_MAG_5Rnd_127x108_KSVK_NAME;
|
|
|
|
cartridgeName = "127x108";
|
|
|
|
class ItemActions
|
|
{
|
|
COMBINE_MAG
|
|
};
|
|
};
|
|
|
|
//VSS
|
|
class 10Rnd_9x39_SP5_VSS: CA_Magazine
|
|
{
|
|
model = "dayz_epoch_c\models\magazines\VSS_vintorez_mag.p3d";
|
|
displayName = $STR_DZ_MAG_10Rnd_9x39_SP5_VSS_NAME;
|
|
|
|
cartridgeName = "9x39";
|
|
|
|
class ItemActions
|
|
{
|
|
COMBINE_MAG
|
|
};
|
|
};
|
|
//VSS
|
|
class 20Rnd_9x39_SP5_VSS: CA_Magazine
|
|
{
|
|
model = "dayz_epoch_c\models\magazines\VSS_vintorez_mag.p3d";
|
|
displayName = $STR_DZ_MAG_20Rnd_9x39_SP5_VSS_NAME;
|
|
|
|
cartridgeName = "9x39";
|
|
|
|
class ItemActions
|
|
{
|
|
COMBINE_MAG
|
|
};
|
|
};
|
|
//Sa61
|
|
class 10Rnd_B_765x17_Ball: CA_Magazine
|
|
{
|
|
model = "dayz_epoch_c\models\magazines\sa61_mag.p3d";
|
|
displayName = "$STR_EP1_DN_10RND_B_765X17_BALL";
|
|
|
|
cartridgeName = "765x17";
|
|
|
|
class ItemActions
|
|
{
|
|
COMBINE_MAG
|
|
};
|
|
};
|
|
//Sa61
|
|
class 20Rnd_B_765x17_Ball: 10Rnd_B_765x17_Ball
|
|
{
|
|
displayName = "$STR_EP1_DN_20RND_B_765X17_BALL";
|
|
};
|