Replace Arma 2 Mk17 with RH Mk17 with attachment support
This commit is contained in:
A Man
2020-03-11 16:52:30 +01:00
parent e2046ef38f
commit c86fce94ff
6 changed files with 504 additions and 41 deletions

View File

@@ -180,9 +180,10 @@ weaponsEU[] =
{Loot_WEAPON, 5, MK16_CCO_SD_DZ},
{Loot_WEAPON, 5, MK16_Holo_SD_DZ},
{Loot_WEAPON, 5, MK16_ACOG_SD_DZ},
{Loot_WEAPON, 3, SCAR_H_CQC_CCO},
{Loot_WEAPON, 3, SCAR_H_CQC_CCO_SD},
{Loot_WEAPON, 3, SCAR_H_STD_EGLM_Spect},
{Loot_WEAPON, 3, MK17_DZ},
{Loot_WEAPON, 3, MK17_CCO_SD_DZ},
{Loot_WEAPON, 3, MK17_Holo_SD_DZ},
{Loot_WEAPON, 3, MK17_ACOG_SD_DZ},
// Machine Guns
{Loot_WEAPON, 6, M8_SAW},

View File

@@ -466,10 +466,19 @@ class Category_16 {
class M1A_SC2_BL_ACOG_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
class M1A_SC2_BL_PU_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
class M1A_SC2_BL_Sniper_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {2,"ItemGoldBar10oz"};};
class SCAR_H_CQC_CCO {type = "trade_weapons";buy[] = {2,"ItemGoldBar10oz"};sell[] = {1,"ItemGoldBar10oz"};};
class SCAR_H_CQC_CCO_SD {type = "trade_weapons";buy[] = {2,"ItemGoldBar10oz"};sell[] = {1,"ItemGoldBar10oz"};};
class SCAR_H_STD_EGLM_Spect {type = "trade_weapons";buy[] = {2,"ItemGoldBar10oz"};sell[] = {1,"ItemGoldBar10oz"};};
class CZ805_B_GL_DZ {type = "trade_weapons";buy[] = {2,"ItemGoldBar10oz"};sell[] = {1,"ItemGoldBar10oz"};};
class MK17_DZ {type = "trade_weapons";buy[] = {2,"ItemGoldBar10oz"};sell[] = {1,"ItemGoldBar10oz"};};
class MK17_CCO_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {12,"ItemGoldBar"};};
class MK17_Holo_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {12,"ItemGoldBar"};};
class MK17_CCO_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {16,"ItemGoldBar"};};
class MK17_Holo_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {16,"ItemGoldBar"};};
class MK17_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {12,"ItemGoldBar"};};
class MK17_GL_CCO_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {14,"ItemGoldBar"};};
class MK17_GL_CCO_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {18,"ItemGoldBar"};};
class MK17_GL_Holo_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {14,"ItemGoldBar"};};
class MK17_GL_Holo_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {18,"ItemGoldBar"};};
class MK17_ACOG_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {14,"ItemGoldBar"};};
class MK17_GL_ACOG_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {16,"ItemGoldBar"};};
class MK17_ACOG_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {18,"ItemGoldBar"};}; class CZ805_B_GL_DZ {type = "trade_weapons";buy[] = {2,"ItemGoldBar10oz"};sell[] = {1,"ItemGoldBar10oz"};};
class HK417_DZ {type = "trade_weapons";buy[] = {2,"ItemGoldBar10oz"};sell[] = {1,"ItemGoldBar10oz"};};
class HK417_CCO_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {12,"ItemGoldBar"};};
class HK417_Holo_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {12,"ItemGoldBar"};};

View File

@@ -107,6 +107,7 @@ class CfgWeapons
#include "Rifles\M21.hpp"
#include "Rifles\HK417.hpp"
#include "Rifles\MK14.hpp"
#include "Rifles\MK17.hpp"
//CZ 805
#include "Rifles\CZ805.hpp"

View File

@@ -150,6 +150,7 @@ class MK16_Holo_DZ : MK16_DZ
model = "\RH_mgswp\RH_Scarl_eotech.p3d";
picture = "\RH_mgswp\inv\scarl_eotech.paa";
displayName = $STR_DZ_WPN_MK16_HOLO_NAME;
handAnim[] = {};
MK16_Laser;
class Attachments
@@ -172,6 +173,7 @@ class MK16_ACOG_DZ : MK16_DZ
model = "\RH_mgswp\RH_Scarl_acog.p3d";
picture = "\RH_mgswp\inv\scarl_acog.paa";
displayName = $STR_DZ_WPN_MK16_ACOG_NAME;
handAnim[] = {};
MK16_Laser;
MK16_ACOG;
@@ -278,10 +280,7 @@ class MK16_GL_ACOG_DZ : MK16_GL_DZ
MK16_M203;
MK16_ACOG;
class Attachments
{
Attachment_Sup556 = "MK16_GL_ACOG_SD_DZ";
};
class Attachments {};
class ItemActions
{
@@ -306,15 +305,16 @@ class MK16_CCO_SD_DZ : MK16_DZ
displayName = $STR_DZ_WPN_MK16_CCO_SD_NAME;
descriptionShort = $STR_DZ_WPN_MK16SD_DESC;
modes[] = {"Single","FullAuto"};
handAnim[] = {};
MK16_Laser;
class Single: Mode_SemiAuto
class Single: Single
{
begin1[] = {"\RH_mgswp\sound\scarl_sd",1.0,1,110};
soundBegin[] = {"begin1",1};
};
class FullAuto: Mode_FullAuto
class FullAuto: FullAuto
{
begin1[] = {"\RH_mgswp\sound\scarl_sd",1.0,1,110};
soundBegin[] = {"begin1",1};
@@ -338,6 +338,7 @@ class MK16_Holo_SD_DZ : MK16_CCO_SD_DZ
model = "\RH_mgswp\RH_Scarl_sd_eotech.p3d";
picture = "\RH_mgswp\inv\scarl_sd_eotech.paa";
displayName = $STR_DZ_WPN_MK16_HOLO_SD_NAME;
handAnim[] = {};
MK16_Laser;

View File

@@ -0,0 +1,398 @@
#define MK17_ACOG modelOptics = "\Ca\weapons_E\SCAR\ACOG_TA31_optic_4x.p3d";\
class OpticsModes\
{\
class ACOG\
{\
opticsID = 1;\
useModelOptics = true;\
opticsFlare = true;\
opticsDisablePeripherialVision = true;\
opticsZoomMin = 0.0623;\
opticsZoomMax = 0.0623;\
opticsZoomInit = 0.0623;\
distanceZoomMin = 300;\
distanceZoomMax = 300;\
memoryPointCamera = "opticView";\
visionMode[] = {"Normal"};\
opticsPPEffects[] = {"OpticsCHAbera3","OpticsBlur3"};\
cameraDir = "";\
};\
\
class Iron\
{\
opticsID = 2;\
useModelOptics = false;\
opticsFlare = false;\
opticsDisablePeripherialVision = false;\
opticsZoomMin = 0.25;\
opticsZoomMax = 1.1;\
opticsZoomInit = 0.5;\
distanceZoomMin = 100;\
distanceZoomMax = 100;\
memoryPointCamera = "eye";\
visionMode[] = {};\
opticsPPEffects[] = {};\
cameraDir = "";\
};\
}
#define MK17_Laser irLaserPos = "laser pos";\
irLaserEnd = "laser dir";\
irDistance = 5
#define MK17_M203 muzzles[] = {this, M203Muzzle};\
handAnim[] = {"OFP2_ManSkeleton","\RH_mgswp\Anim\RH_scargl.rtm"}
class MK17_DZ : M4A1
{
model = "\RH_mgswp\RH_Scarh.p3d";
picture = "\RH_mgswp\inv\scarh.paa";
handAnim[] = {};
reloadMagazineSound[] = {"\RH_mgswp\sound\scar_Reload",0.0316228,1,20};
displayName = $STR_DZ_WPN_MK17_NAME;
descriptionShort = $STR_DZ_WPN_MK17_DESC;
weaponInfoType = "RscWeaponZeroing";
discreteDistance[] = {100,200,300,400,500,600};
discreteDistanceInitIndex = 2;
bullet1[] = {"ca\sounds\weapons\shells\small_shell_metal_04",0.17782794,1,15};
bullet2[] = {"ca\sounds\weapons\shells\small_shell_metal_03",0.17782794,1,15};
bullet3[] = {"ca\sounds\weapons\shells\small_shell_metal_02",0.17782794,1,15};
bullet4[] = {"ca\sounds\weapons\shells\small_shell_metal_01",0.17782794,1,15};
bullet5[] = {"ca\sounds\weapons\shells\small_shell_dirt_07",0.31622776,1,15};
bullet6[] = {"ca\sounds\weapons\shells\small_shell_dirt_09",0.31622776,1,15};
bullet7[] = {"ca\sounds\weapons\shells\small_shell_dirt_10",0.31622776,1,15};
bullet8[] = {"ca\sounds\weapons\shells\small_shell_dirt_12",0.31622776,1,15};
bullet9[] = {"ca\sounds\weapons\shells\small_shell_soft_05",0.17782794,1,15};
bullet10[] = {"ca\sounds\weapons\shells\small_shell_soft_09",0.17782794,1,15};
bullet11[] = {"ca\sounds\weapons\shells\small_shell_soft_10",0.17782794,1,15};
bullet12[] = {"ca\sounds\weapons\shells\small_shell_soft_13",0.17782794,1,15};
soundBullet[] = {"bullet1",0.083,"bullet2",0.083,"bullet3",0.083,"bullet4",0.083,"bullet5",0.083,"bullet6",0.083,"bullet7",0.083,"bullet8",0.083,"bullet9",0.083,"bullet10",0.083,"bullet11",0.083,"bullet12",0.083};
modes[] = {"Single","FullAuto"};
class Single: Mode_SemiAuto
{
begin1[] = {"\RH_mgswp\sound\scarh",1.77828,1,1700};
soundBegin[] = {"begin1",1};
dispersion = 0.0025;
reloadtime = 0.096;
recoil = "recoil_single_primary_4outof10";
recoilProne = "recoil_single_primary_prone_3outof10";
aiRateOfFire = 1;
aiRateOfFireDistance = 300;
minRange = 0;
minRangeProbab = 0.7;
midRange = 150;
midRangeProbab = 0.5;
maxRange = 300;
maxRangeProbab = 0.03;
};
class FullAuto: Mode_FullAuto
{
begin1[] = {"\RH_mgswp\sound\scarh",1.77828,1,1700};
soundBegin[] = {"begin1",1};
dispersion = 0.0025;
reloadtime = 0.096;
recoil = "recoil_single_primary_4outof10";
recoilProne = "recoil_single_primary_prone_3outof10";
aiRateOfFire = 0.2;
aiRateOfFireDistance = 50;
minRange = 0;
minRangeProbab = 0.8;
midRange = 20;
midRangeProbab = 0.7;
maxRange = 50;
maxRangeProbab = 0.02;
};
magazines[] = {20Rnd_762x51_B_SCAR};
class Attachments
{
Attachment_CCO = "MK17_CCO_DZ";
Attachment_Holo = "MK17_Holo_DZ";
Attachment_ACOG = "MK17_ACOG_DZ";
Attachment_M203 = "MK17_GL_DZ";
};
};
class MK17_CCO_DZ : MK17_DZ
{
model = "\RH_mgswp\RH_Scarh_aim.p3d";
picture = "\RH_mgswp\inv\scarh_aim.paa";
handAnim[] = {"OFP2_ManSkeleton","\RH_mgswp\anim\RH_M4cs.rtm"};
displayName = $STR_DZ_WPN_MK17_CCO_NAME;
MK17_Laser;
class Attachments
{
Attachment_M203 = "MK17_GL_CCO_DZ";
};
class ItemActions
{
class RemoveCCO
{
text = $STR_DZ_ATT_CCO_RMVE;
script = "; ['Attachment_CCO',_id,'MK17_DZ'] call player_removeAttachment";
};
};
};
class MK17_Holo_DZ : MK17_DZ
{
model = "\RH_mgswp\RH_Scarh_eotech.p3d";
picture = "\RH_mgswp\inv\scarh_eotech.paa";
handAnim[] = {"OFP2_ManSkeleton","\RH_mgswp\anim\RH_M4cs.rtm"};
displayName = $STR_DZ_WPN_MK17_HOLO_NAME;
MK17_Laser;
class Attachments
{
Attachment_M203 = "MK17_GL_Holo_DZ";
};
class ItemActions
{
class RemoveHolo
{
text = $STR_DZ_ATT_HOLO_RMVE;
script = "; ['Attachment_Holo',_id,'MK17_DZ'] call player_removeAttachment";
};
};
};
class MK17_ACOG_DZ : MK17_DZ
{
model = "\RH_mgswp\RH_Scarh_acog.p3d";
picture = "\RH_mgswp\inv\scarh_acog.paa";
handAnim[] = {"OFP2_ManSkeleton","\RH_mgswp\anim\RH_M4cs.rtm"};
displayName = $STR_DZ_WPN_MK17_ACOG_NAME;
MK17_Laser;
MK17_ACOG;
class Attachments
{
Attachment_M203 = "MK17_GL_ACOG_DZ";
};
class ItemActions
{
class RemoveACOG
{
text = $STR_DZ_ATT_ACOG_RMVE;
script = "; ['Attachment_ACOG',_id,'MK17_DZ'] call player_removeAttachment";
};
};
};
class MK17_GL_DZ : MK17_DZ
{
model = "\RH_mgswp\RH_Scarh_gl.p3d";
picture = "\RH_mgswp\inv\Scarh_gl.paa";
displayName = $STR_DZ_WPN_MK17_GL_NAME;
MK17_M203;
class Attachments
{
Attachment_CCO = "MK17_GL_CCO_DZ";
Attachment_Holo = "MK17_GL_Holo_DZ";
Attachment_ACOG = "MK17_GL_ACOG_DZ";
};
class ItemActions
{
class RemoveGL
{
text = $STR_DZ_ATT_M203_RMVE;
script = "; ['Attachment_M203',_id,'MK17_DZ'] call player_removeAttachment";
};
};
};
class MK17_GL_CCO_DZ : MK17_GL_DZ
{
model = "\RH_mgswp\RH_Scarh_gl_aim.p3d";
picture = "\RH_mgswp\inv\Scarh_gl_aim.paa";
displayName = $STR_DZ_WPN_MK17_GL_CCO_NAME;
MK17_Laser;
MK17_M203;
class Attachments {};
class ItemActions
{
class RemoveCCO
{
text = $STR_DZ_ATT_CCO_RMVE;
script = "; ['Attachment_CCO',_id,'MK17_GL_DZ'] call player_removeAttachment";
};
class RemoveGL
{
text = $STR_DZ_ATT_M203_RMVE;
script = "; ['Attachment_M203',_id,'MK17_CCO_DZ'] call player_removeAttachment";
};
};
};
class MK17_GL_Holo_DZ : MK17_GL_DZ
{
model = "\RH_mgswp\RH_Scarh_gl_eotech.p3d";
picture = "\RH_mgswp\inv\Scarh_gl_eotech.paa";
displayName = $STR_DZ_WPN_MK17_GL_HOLO_NAME;
MK17_Laser;
MK17_M203;
class Attachments {};
class ItemActions
{
class RemoveHolo
{
text = $STR_DZ_ATT_HOLO_RMVE;
script = "; ['Attachment_Holo',_id,'MK17_GL_DZ'] call player_removeAttachment";
};
class RemoveGL
{
text = $STR_DZ_ATT_M203_RMVE;
script = "; ['Attachment_M203',_id,'MK17_Holo_DZ'] call player_removeAttachment";
};
};
};
class MK17_GL_ACOG_DZ : MK17_GL_DZ
{
model = "\RH_mgswp\RH_Scarh_gl_acog.p3d";
picture = "\RH_mgswp\inv\Scarh_gl_acog.paa";
displayName = $STR_DZ_WPN_MK17_GL_ACOG_NAME;
MK17_Laser;
MK17_M203;
MK17_ACOG;
class Attachments {};
class ItemActions
{
class RemoveACOG
{
text = $STR_DZ_ATT_ACOG_RMVE;
script = "; ['Attachment_ACOG',_id,'MK17_GL_DZ'] call player_removeAttachment";
};
class RemoveGL
{
text = $STR_DZ_ATT_M203_RMVE;
script = "; ['Attachment_M203',_id,'MK17_ACOG_DZ'] call player_removeAttachment";
};
};
};
//SD - No SD weapon model without a scope available
class MK17_CCO_SD_DZ : MK17_DZ
{
model = "\RH_mgswp\RH_scarh_sd_aim.p3d";
picture = "\RH_mgswp\inv\scarh_sd_aim.paa";
displayName = $STR_DZ_WPN_MK17_CCO_SD_NAME;
descriptionShort = $STR_DZ_WPN_MK17SD_DESC;
modes[] = {"Single","FullAuto"};
handAnim[] = {"OFP2_ManSkeleton","\RH_mgswp\anim\RH_M4cs.rtm"};
MK17_Laser;
class Single: Single
{
begin1[] = {"\RH_mgswp\sound\scarh_sd",1.0,1,200};
soundBegin[] = {"begin1",1};
};
class FullAuto: FullAuto
{
begin1[] = {"\RH_mgswp\sound\scarh_sd",1.0,1,200};
soundBegin[] = {"begin1",1};
};
magazines[] = {20Rnd_762x51_SB_SCAR};
class Attachments
{
Attachment_M203 = "MK17_GL_CCO_SD_DZ";
};
class ItemActions {};
};
class MK17_Holo_SD_DZ : MK17_CCO_SD_DZ
{
model = "\RH_mgswp\RH_scarh_sd_eotech.p3d";
picture = "\RH_mgswp\inv\scarh_sd_eotech.paa";
displayName = $STR_DZ_WPN_MK17_HOLO_SD_NAME;
handAnim[] = {"OFP2_ManSkeleton","\RH_mgswp\anim\RH_M4cs.rtm"};
MK17_Laser;
class Attachments
{
Attachment_M203 = "MK17_GL_Holo_SD_DZ";
};
class ItemActions {};
};
class MK17_ACOG_SD_DZ : MK17_CCO_SD_DZ
{
model = "\RH_mgswp\RH_scarh_sd_acog.p3d";
picture = "\RH_mgswp\inv\scarh_sd_acog.paa";
displayName = $STR_DZ_WPN_MK17_ACOG_SD_NAME;
handAnim[] = {"OFP2_ManSkeleton","\RH_mgswp\anim\RH_M4cs.rtm"};
MK17_Laser;
MK17_ACOG;
class Attachments {};
class ItemActions {};
};
class MK17_GL_CCO_SD_DZ : MK17_CCO_SD_DZ
{
model = "\RH_mgswp\RH_scarh_sd_gl_aim.p3d";
picture = "\RH_mgswp\inv\scarh_sd_gl_aim.paa";
displayName = $STR_DZ_WPN_MK17_GL_CCO_SD_NAME;
MK17_Laser;
MK17_M203;
class Attachments {};
class ItemActions
{
class RemoveGL
{
text = $STR_DZ_ATT_M203_RMVE;
script = "; ['Attachment_M203',_id,'MK17_CCO_SD_DZ'] call player_removeAttachment";
};
};
};
class MK17_GL_Holo_SD_DZ : MK17_CCO_SD_DZ
{
model = "\RH_mgswp\RH_scarh_sd_gl_eotech.p3d";
picture = "\RH_mgswp\inv\scarh_sd_gl_eotech.paa";
displayName = $STR_DZ_WPN_MK17_GL_HOLO_SD_NAME;
MK17_Laser;
MK17_M203;
class Attachments {};
class ItemActions
{
class RemoveGL
{
text = $STR_DZ_ATT_M203_RMVE;
script = "; ['Attachment_M203',_id,'MK17_Holo_SD_DZ'] call player_removeAttachment";
};
};
};
#undef MK17_ACOG
#undef MK17_Laser
#undef MK17_M203

View File

@@ -12859,52 +12859,52 @@
<German>Schallgedämpftes Sturmgewehr &lt;br/&gt;Kaliber: 7.62x51mm</German>
</Key>
<!-- MK 16 -->
<!-- MK16 -->
<Key ID="STR_DZ_WPN_MK16_NAME">
<English>MK 16</English>
<English>MK16</English>
</Key>
<Key ID="STR_DZ_WPN_MK16_GL_NAME">
<English>MK 16 M203</English>
<English>MK16 M203</English>
</Key>
<Key ID="STR_DZ_WPN_MK16_CCO_NAME">
<English>MK 16 CCO</English>
<English>MK16 CCO</English>
</Key>
<Key ID="STR_DZ_WPN_MK16_CCO_SD_NAME">
<English>MK 16 CCO SD</English>
<Russian>MK 16 CCO ПБС</Russian>
<English>MK16 CCO SD</English>
<Russian>MK16 CCO ПБС</Russian>
</Key>
<Key ID="STR_DZ_WPN_MK16_GL_CCO_NAME">
<English>MK 16 M203 CCO</English>
<English>MK16 M203 CCO</English>
</Key>
<Key ID="STR_DZ_WPN_MK16_GL_CCO_SD_NAME">
<English>MK 16 M203 CCO SD</English>
<Russian>MK 16 M203 CCO ПБС</Russian>
<English>MK16 M203 CCO SD</English>
<Russian>MK16 M203 CCO ПБС</Russian>
</Key>
<Key ID="STR_DZ_WPN_MK16_HOLO_NAME">
<English>MK 16 Holo</English>
<English>MK16 Holo</English>
</Key>
<Key ID="STR_DZ_WPN_MK16_HOLO_SD_NAME">
<English>MK 16 Holo SD</English>
<Russian>MK 16 Holo ПБС</Russian>
<English>MK16 Holo SD</English>
<Russian>MK16 Holo ПБС</Russian>
</Key>
<Key ID="STR_DZ_WPN_MK16_GL_HOLO_NAME">
<English>MK 16 M203 Holo</English>
<English>MK16 M203 Holo</English>
</Key>
<Key ID="STR_DZ_WPN_MK16_GL_HOLO_SD_NAME">
<English>MK 16 M203 Holo SD</English>
<Russian>MK 16 M203 Holo ПБС</Russian>
<English>MK16 M203 Holo SD</English>
<Russian>MK16 M203 Holo ПБС</Russian>
</Key>
<Key ID="STR_DZ_WPN_MK16_ACOG_NAME">
<English>MK 16 ACOG</English>
<English>MK16 ACOG</English>
</Key>
<Key ID="STR_DZ_WPN_MK16_GL_ACOG_NAME">
<English>MK 16 M203 ACOG</English>
<English>MK16 M203 ACOG</English>
</Key>
<Key ID="STR_DZ_WPN_MK16_ACOG_SD_NAME">
<English>MK 16 ACOG SD</English>
<English>MK16 ACOG SD</English>
</Key>
<Key ID="STR_DZ_WPN_MK16_GL_ACOG_SD_NAME">
<English>MK 16 M203 ACOG SD</English>
<English>MK16 M203 ACOG SD</English>
</Key>
<Key ID="STR_DZ_WPN_MK16_DESC">
<English>Assault Rifle &lt;br/&gt;Caliber: 5.56x45mm</English>
@@ -12914,6 +12914,59 @@
<English>Silenced Assault Rifle &lt;br/&gt;Caliber: 5.56x45mm SD</English>
<German>Schallgedämpftes Sturmgewehr &lt;br/&gt;Kaliber: 5.56x45mm SD</German>
</Key>
<!-- MK17 -->
<Key ID="STR_DZ_WPN_MK17_NAME">
<English>MK17</English>
</Key>
<Key ID="STR_DZ_WPN_MK17_GL_NAME">
<English>MK17 M203</English>
</Key>
<Key ID="STR_DZ_WPN_MK17_CCO_NAME">
<English>MK17 CCO</English>
</Key>
<Key ID="STR_DZ_WPN_MK17_CCO_SD_NAME">
<English>MK17 CCO SD</English>
<Russian>MK17 CCO ПБС</Russian>
</Key>
<Key ID="STR_DZ_WPN_MK17_GL_CCO_NAME">
<English>MK17 M203 CCO</English>
</Key>
<Key ID="STR_DZ_WPN_MK17_GL_CCO_SD_NAME">
<English>MK17 M203 CCO SD</English>
<Russian>MK17 M203 CCO ПБС</Russian>
</Key>
<Key ID="STR_DZ_WPN_MK17_HOLO_NAME">
<English>MK17 Holo</English>
</Key>
<Key ID="STR_DZ_WPN_MK17_HOLO_SD_NAME">
<English>MK17 Holo SD</English>
<Russian>MK17 Holo ПБС</Russian>
</Key>
<Key ID="STR_DZ_WPN_MK17_GL_HOLO_NAME">
<English>MK17 M203 Holo</English>
</Key>
<Key ID="STR_DZ_WPN_MK17_GL_HOLO_SD_NAME">
<English>MK17 M203 Holo SD</English>
<Russian>MK17 M203 Holo ПБС</Russian>
</Key>
<Key ID="STR_DZ_WPN_MK17_ACOG_NAME">
<English>MK17 ACOG</English>
</Key>
<Key ID="STR_DZ_WPN_MK17_GL_ACOG_NAME">
<English>MK17 M203 ACOG</English>
</Key>
<Key ID="STR_DZ_WPN_MK17_ACOG_SD_NAME">
<English>MK17 ACOG SD</English>
</Key>
<Key ID="STR_DZ_WPN_MK17_DESC">
<English>Assault Rifle &lt;br/&gt;Caliber: 7.62x51mm</English>
<German>Sturmgewehr &lt;br/&gt;Kaliber: 7.62x51mm</German>
</Key>
<Key ID="STR_DZ_WPN_MK17SD_DESC">
<English>Silenced Assault Rifle &lt;br/&gt;Caliber: 7.62x51mm SD</English>
<German>Schallgedämpftes Sturmgewehr &lt;br/&gt;Kaliber: 7.62x51mm SD</German>
</Key>
<!-- **** MAGAZINES **** -->
@@ -13274,15 +13327,15 @@
<Hungarian>Kaliber: 5.56x45mm &lt;br/&gt; Töltények: 100 &lt;br/&gt; Hozzá tartozó fegyver: G36, MG36, M16, M4, M249, MK-12, M8 and L110</Hungarian>
</Key>
<Key ID="STR_DZ_MAG_20RND_MK17_DESC">
<English>Caliber: 7.62x51mm NATO&lt;br/&gt;Rounds: 20&lt;br/&gt;Used in: Mk 17, M110, CZ 805B</English>
<French>Calibre: 7,62 x 51 mm OTAN&lt;br/&gt;Munitions : 20&lt;br/&gt;Utilisé avec: Mk 17, M110, CZ 805B</French>
<Spanish>Calibre: 7.62x51 mm OTAN&lt;br/&gt;Cartuchos: 20&lt;br/&gt;Usado en: Mk 17, M110, CZ 805B</Spanish>
<Italian>Calibro: 7,62x51 mm NATO&lt;br/&gt;Munizioni: 20&lt;br/&gt;Usato in: Mk 17, M110, CZ 805B</Italian>
<Polish>Kaliber: 7,62x51 mm NATO&lt;br/&gt;Naboje: 20&lt;br/&gt;Uzywany w: Mk 17, M110, CZ 805B</Polish>
<Russian>Патрон: 7.62x51 мм НАТО&lt;br/&gt;Количество: 20&lt;br/&gt;Исп. в: Mk 17, M110, CZ 805B</Russian>
<German>Kaliber: 7,62x51mm NATO&lt;br/&gt;Patronen: 20&lt;br/&gt;Eingesetzt in: Mk 17, M110, CZ 805B</German>
<Czech>Kalibr: 7.62x51mm NATO&lt;br/&gt;Nábojů: 20&lt;br/&gt;Pro: Mk 17, M110, CZ 805B</Czech>
<Hungarian>Kaliber: 7.62x51mm NATO &lt;br/&gt; Töltények: 20 &lt;br/&gt; Hozzá tartozó fegyver: Mk 17, M110, CZ 805B</Hungarian>
<English>Caliber: 7.62x51mm NATO&lt;br/&gt;Rounds: 20&lt;br/&gt;Used in: MK17, M110, CZ 805B</English>
<French>Calibre: 7,62 x 51 mm OTAN&lt;br/&gt;Munitions : 20&lt;br/&gt;Utilisé avec: MK17, M110, CZ 805B</French>
<Spanish>Calibre: 7.62x51 mm OTAN&lt;br/&gt;Cartuchos: 20&lt;br/&gt;Usado en: MK17, M110, CZ 805B</Spanish>
<Italian>Calibro: 7,62x51 mm NATO&lt;br/&gt;Munizioni: 20&lt;br/&gt;Usato in: MK17, M110, CZ 805B</Italian>
<Polish>Kaliber: 7,62x51 mm NATO&lt;br/&gt;Naboje: 20&lt;br/&gt;Uzywany w: MK17, M110, CZ 805B</Polish>
<Russian>Патрон: 7.62x51 мм НАТО&lt;br/&gt;Количество: 20&lt;br/&gt;Исп. в: MK17, M110, CZ 805B</Russian>
<German>Kaliber: 7,62x51mm NATO&lt;br/&gt;Patronen: 20&lt;br/&gt;Eingesetzt in: MK17, M110, CZ 805B</German>
<Czech>Kalibr: 7.62x51mm NATO&lt;br/&gt;Nábojů: 20&lt;br/&gt;Pro: MK17, M110, CZ 805B</Czech>
<Hungarian>Kaliber: 7.62x51mm NATO &lt;br/&gt; Töltények: 20 &lt;br/&gt; Hozzá tartozó fegyver: MK17, M110, CZ 805B</Hungarian>
</Key>
<Key ID="STR_DZ_MAG_40RND_MP7_NAME">
<English>40Rnd. MP7 mag.</English>