diff --git a/SQF/dayz_code/Configs/CfgLoot/Groups/Weapons.hpp b/SQF/dayz_code/Configs/CfgLoot/Groups/Weapons.hpp index 0e2ece197..abd8912a2 100644 --- a/SQF/dayz_code/Configs/CfgLoot/Groups/Weapons.hpp +++ b/SQF/dayz_code/Configs/CfgLoot/Groups/Weapons.hpp @@ -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}, diff --git a/SQF/dayz_code/Configs/CfgServerTrader/Category/Weapons.hpp b/SQF/dayz_code/Configs/CfgServerTrader/Category/Weapons.hpp index 2631c35ec..ba7522635 100644 --- a/SQF/dayz_code/Configs/CfgServerTrader/Category/Weapons.hpp +++ b/SQF/dayz_code/Configs/CfgServerTrader/Category/Weapons.hpp @@ -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"};}; diff --git a/SQF/dayz_code/Configs/CfgWeapons/CfgWeapons.hpp b/SQF/dayz_code/Configs/CfgWeapons/CfgWeapons.hpp index 2cc23a03f..3a82692c4 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/CfgWeapons.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/CfgWeapons.hpp @@ -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" diff --git a/SQF/dayz_code/Configs/CfgWeapons/Rifles/MK16.hpp b/SQF/dayz_code/Configs/CfgWeapons/Rifles/MK16.hpp index 73508d157..21a34a8a9 100644 --- a/SQF/dayz_code/Configs/CfgWeapons/Rifles/MK16.hpp +++ b/SQF/dayz_code/Configs/CfgWeapons/Rifles/MK16.hpp @@ -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; diff --git a/SQF/dayz_code/Configs/CfgWeapons/Rifles/MK17.hpp b/SQF/dayz_code/Configs/CfgWeapons/Rifles/MK17.hpp new file mode 100644 index 000000000..d3cc472e7 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgWeapons/Rifles/MK17.hpp @@ -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 \ No newline at end of file diff --git a/SQF/dayz_code/stringtable.xml b/SQF/dayz_code/stringtable.xml index 462b094d5..a76d71331 100644 --- a/SQF/dayz_code/stringtable.xml +++ b/SQF/dayz_code/stringtable.xml @@ -12859,52 +12859,52 @@ Schallgedämpftes Sturmgewehr <br/>Kaliber: 7.62x51mm - + - MK 16 + MK16 - MK 16 M203 + MK16 M203 - MK 16 CCO + MK16 CCO - MK 16 CCO SD - MK 16 CCO ПБС + MK16 CCO SD + MK16 CCO ПБС - MK 16 M203 CCO + MK16 M203 CCO - MK 16 M203 CCO SD - MK 16 M203 CCO ПБС + MK16 M203 CCO SD + MK16 M203 CCO ПБС - MK 16 Holo + MK16 Holo - MK 16 Holo SD - MK 16 Holo ПБС + MK16 Holo SD + MK16 Holo ПБС - MK 16 M203 Holo + MK16 M203 Holo - MK 16 M203 Holo SD - MK 16 M203 Holo ПБС + MK16 M203 Holo SD + MK16 M203 Holo ПБС - MK 16 ACOG + MK16 ACOG - MK 16 M203 ACOG + MK16 M203 ACOG - MK 16 ACOG SD + MK16 ACOG SD - MK 16 M203 ACOG SD + MK16 M203 ACOG SD Assault Rifle <br/>Caliber: 5.56x45mm @@ -12914,6 +12914,59 @@ Silenced Assault Rifle <br/>Caliber: 5.56x45mm SD Schallgedämpftes Sturmgewehr <br/>Kaliber: 5.56x45mm SD + + + + MK17 + + + MK17 M203 + + + MK17 CCO + + + MK17 CCO SD + MK17 CCO ПБС + + + MK17 M203 CCO + + + MK17 M203 CCO SD + MK17 M203 CCO ПБС + + + MK17 Holo + + + MK17 Holo SD + MK17 Holo ПБС + + + MK17 M203 Holo + + + MK17 M203 Holo SD + MK17 M203 Holo ПБС + + + MK17 ACOG + + + MK17 M203 ACOG + + + MK17 ACOG SD + + + Assault Rifle <br/>Caliber: 7.62x51mm + Sturmgewehr <br/>Kaliber: 7.62x51mm + + + Silenced Assault Rifle <br/>Caliber: 7.62x51mm SD + Schallgedämpftes Sturmgewehr <br/>Kaliber: 7.62x51mm SD + @@ -13274,15 +13327,15 @@ Kaliber: 5.56x45mm <br/> Töltények: 100 <br/> Hozzá tartozó fegyver: G36, MG36, M16, M4, M249, MK-12, M8 and L110 - Caliber: 7.62x51mm NATO<br/>Rounds: 20<br/>Used in: Mk 17, M110, CZ 805B - Calibre: 7,62 x 51 mm OTAN<br/>Munitions : 20<br/>Utilisé avec: Mk 17, M110, CZ 805B - Calibre: 7.62x51 mm OTAN<br/>Cartuchos: 20<br/>Usado en: Mk 17, M110, CZ 805B - Calibro: 7,62x51 mm NATO<br/>Munizioni: 20<br/>Usato in: Mk 17, M110, CZ 805B - Kaliber: 7,62x51 mm NATO<br/>Naboje: 20<br/>Uzywany w: Mk 17, M110, CZ 805B - Патрон: 7.62x51 мм НАТО<br/>Количество: 20<br/>Исп. в: Mk 17, M110, CZ 805B - Kaliber: 7,62x51mm NATO<br/>Patronen: 20<br/>Eingesetzt in: Mk 17, M110, CZ 805B - Kalibr: 7.62x51mm NATO<br/>Nábojů: 20<br/>Pro: Mk 17, M110, CZ 805B - Kaliber: 7.62x51mm NATO <br/> Töltények: 20 <br/> Hozzá tartozó fegyver: Mk 17, M110, CZ 805B + Caliber: 7.62x51mm NATO<br/>Rounds: 20<br/>Used in: MK17, M110, CZ 805B + Calibre: 7,62 x 51 mm OTAN<br/>Munitions : 20<br/>Utilisé avec: MK17, M110, CZ 805B + Calibre: 7.62x51 mm OTAN<br/>Cartuchos: 20<br/>Usado en: MK17, M110, CZ 805B + Calibro: 7,62x51 mm NATO<br/>Munizioni: 20<br/>Usato in: MK17, M110, CZ 805B + Kaliber: 7,62x51 mm NATO<br/>Naboje: 20<br/>Uzywany w: MK17, M110, CZ 805B + Патрон: 7.62x51 мм НАТО<br/>Количество: 20<br/>Исп. в: MK17, M110, CZ 805B + Kaliber: 7,62x51mm NATO<br/>Patronen: 20<br/>Eingesetzt in: MK17, M110, CZ 805B + Kalibr: 7.62x51mm NATO<br/>Nábojů: 20<br/>Pro: MK17, M110, CZ 805B + Kaliber: 7.62x51mm NATO <br/> Töltények: 20 <br/> Hozzá tartozó fegyver: MK17, M110, CZ 805B 40Rnd. MP7 mag.