mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Add Remington ACRs
- Add 96 different ACRs in 4 different colors - Complete attachment support - All weapons have a flashlight - TWS versions and TWS scope are sell only and have the same scope as the L85A2 TWS - NV versions can switch between NV and Holo, also have military flashlight Big thanks @Alwarren
This commit is contained in:
@@ -44,6 +44,7 @@ Included Custom Addons
|
||||
* "Heckler & Koch" MP7 by SyNcRoNiCzZ - http://www.armaholic.com/page.php?id=8379
|
||||
* P99 Projekt by SyNcRoNiCzZ - http://www.armaholic.com/page.php?id=9985
|
||||
* FAMAS Pack by SyNcRoNiCzZ - http://www.armaholic.com/page.php?id=8867
|
||||
* FHQ Remington Weapon Pack by Alwarren - http://www.armaholic.com/page.php?id=17971
|
||||
|
||||
--------------------------
|
||||
Included Custom Islands
|
||||
|
||||
@@ -113,6 +113,8 @@ AmmoUS[] =
|
||||
// Assault rifles
|
||||
{Loot_MAGAZINE, 10, 30Rnd_556x45_Stanag},
|
||||
{Loot_MAGAZINE, 8, 30Rnd_556x45_StanagSD},
|
||||
{Loot_MAGAZINE, 6, ACR_30Rnd_680x43},
|
||||
{Loot_MAGAZINE, 4, ACR_30Rnd_680x43_SD},
|
||||
|
||||
// Sniper rifles
|
||||
{Loot_MAGAZINE, 7, 5Rnd_762x51_M24},
|
||||
|
||||
@@ -54,6 +54,8 @@ CrashSiteUS[] =
|
||||
//Weapons
|
||||
{Loot_GROUP, 30, weaponsUS},
|
||||
{Loot_WEAPON, 1, M107_DZ}, // High value weapon
|
||||
{Loot_WEAPON, 5, ACR_WDL_NV_DZ}, // ACR WDL NV
|
||||
{Loot_WEAPON, 5, ACR_BL_NV_DZ}, // ACR BL NV
|
||||
|
||||
//Tools
|
||||
{Loot_GROUP, 3, ToolsMilitary},
|
||||
|
||||
@@ -72,6 +72,8 @@ weaponsUS[] =
|
||||
{Loot_WEAPON, 6, M4A1_HWS_GL_camo},
|
||||
{Loot_WEAPON, 6, M4A3_CCO_EP1},
|
||||
{Loot_WEAPON, 6, M4A1_HWS_GL_SD_Camo},
|
||||
{Loot_WEAPON, 6, ACR_WDL_DZ},
|
||||
{Loot_WEAPON, 6, ACR_BL_DZ},
|
||||
|
||||
// Machine Guns
|
||||
{Loot_WEAPON, 3, M60A4_EP1_DZE},
|
||||
|
||||
@@ -18,6 +18,7 @@
|
||||
|
||||
#include "Sup9.hpp"
|
||||
#include "Sup10.hpp"
|
||||
#include "Sup68.hpp"
|
||||
#include "Sup556.hpp"
|
||||
#include "Sup545.hpp"
|
||||
#include "SupMakarov.hpp"
|
||||
|
||||
21
SQF/dayz_code/Configs/CfgMagazines/Attachments/Sup68.hpp
Normal file
21
SQF/dayz_code/Configs/CfgMagazines/Attachments/Sup68.hpp
Normal file
@@ -0,0 +1,21 @@
|
||||
class Attachment_Sup68 : CA_Magazine
|
||||
{
|
||||
scope = public;
|
||||
count = 1;
|
||||
type = WeaponSlotItem;
|
||||
|
||||
model = "\z\addons\dayz_communityweapons\attachments\suppressor556\suppressor556.p3d";
|
||||
picture = "\z\addons\dayz_communityweapons\attachments\suppressor556\data\m_suppressor556_ca.paa";
|
||||
|
||||
displayName = $STR_DZ_ATT_SUP68_NAME;
|
||||
descriptionShort = $STR_DZ_ATT_SUP68_DESC;
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class AttachToPrimary
|
||||
{
|
||||
text = $STR_DZ_ATT_ACT_TO_PRIMARY;
|
||||
script = "; [_id,1] call player_attachAttachment";
|
||||
};
|
||||
};
|
||||
};
|
||||
25
SQF/dayz_code/Configs/CfgMagazines/Magazines/680x43.hpp
Normal file
25
SQF/dayz_code/Configs/CfgMagazines/Magazines/680x43.hpp
Normal file
@@ -0,0 +1,25 @@
|
||||
class ACR_30Rnd_680x43: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
displayName = $STR_DZ_MAG_30RND_ACR_NAME;
|
||||
descriptionShort = $STR_DZ_MAG_30RND_ACR_DESC;
|
||||
picture = "\FHQ_Remington\ammo\ui\i_30rndpmag.paa";
|
||||
ammo = "B_680x43_Ball";
|
||||
initSpeed = 700;
|
||||
tracersEvery = 0;
|
||||
model = "\FHQ_Remington\acr\magazine.p3d";
|
||||
count = 30;
|
||||
|
||||
};
|
||||
class ACR_30Rnd_680x43_SD: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
displayName = $STR_DZ_MAG_30RND_ACRSD_NAME;
|
||||
descriptionShort = $STR_DZ_MAG_30RND_ACRSD_DESC;
|
||||
picture = "\FHQ_Remington\ammo\ui\i_30rndpmag.paa";
|
||||
ammo = "B_680x43_SD";
|
||||
initSpeed = 420;
|
||||
tracersEvery = 0;
|
||||
model = "\FHQ_Remington\acr\magazine.p3d";
|
||||
count = 30;
|
||||
};
|
||||
@@ -16,6 +16,7 @@
|
||||
#include "762x51.hpp" //M240, FN FAL, DMR, M24
|
||||
#include "762x54r.hpp" //PK, SVD, Mosin
|
||||
#include "46x30.hpp" //MP7
|
||||
#include "680x43.hpp" //ACR
|
||||
#include "Misc.hpp" //CZ550, Lee-Enfield
|
||||
#include "Shotgun.hpp"
|
||||
#include "Arrows.hpp"
|
||||
|
||||
@@ -52,6 +52,8 @@ class Category_22 {
|
||||
class 30Rnd_762x39_AK47 {type = "trade_items";buy[] = {2,"ItemSilverBar"};sell[] = {1,"ItemSilverBar"};};
|
||||
class 30Rnd_762x39_SA58 {type = "trade_items";buy[] = {2,"ItemSilverBar"};sell[] = {1,"ItemSilverBar"};};
|
||||
class 20Rnd_762x51_FNFAL {type = "trade_items";buy[] = {1,"ItemGoldBar"};sell[] = {5,"ItemSilverBar10oz"};};
|
||||
class ACR_30Rnd_680x43 {type = "trade_items";buy[] = {1,"ItemGoldBar"};sell[] = {5,"ItemSilverBar10oz"};};
|
||||
class ACR_30Rnd_680x43_SD {type = "trade_items";buy[] = {2,"ItemGoldBar"};sell[] = {1,"ItemGoldBar"};};
|
||||
class 20Rnd_762x51_DMR {type = "trade_items";buy[] = {8,"ItemGoldBar"};sell[] = {4,"ItemGoldBar"};};
|
||||
class 20Rnd_762x51_B_SCAR {type = "trade_items";buy[] = {6,"ItemGoldBar"};sell[] = {3,"ItemGoldBar"};};
|
||||
class 20Rnd_762x51_SB_SCAR {type = "trade_items";buy[] = {1,"ItemGoldBar"};sell[] = {5,"ItemSilverBar10oz"};};
|
||||
|
||||
@@ -12,11 +12,13 @@ class Category_12 {
|
||||
class Attachment_Kobra {type = "trade_items";buy[] = {4,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
|
||||
class Attachment_SCOPED {type = "trade_items";buy[] = {6,"ItemGoldBar"};sell[] = {3,"ItemGoldBar"};};
|
||||
class Attachment_ACOG {type = "trade_items";buy[] = {8,"ItemGoldBar"};sell[] = {4,"ItemGoldBar"};};
|
||||
class Attachment_Tws {type = "trade_items";buy[] = {-8,"ItemGoldBar"};sell[] = {4,"ItemGoldBar"};};
|
||||
class Attachment_PSO1 {type = "trade_items";buy[] = {8,"ItemGoldBar"};sell[] = {4,"ItemGoldBar"};};
|
||||
class Attachment_Sup9 {type = "trade_items";buy[] = {4,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
|
||||
class Attachment_Sup10 {type = "trade_items";buy[] = {4,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
|
||||
class Attachment_Sup545 {type = "trade_items";buy[] = {6,"ItemGoldBar"};sell[] = {3,"ItemGoldBar"};};
|
||||
class Attachment_Sup556 {type = "trade_items";buy[] = {8,"ItemGoldBar"};sell[] = {4,"ItemGoldBar"};};
|
||||
class Attachment_Sup68 {type = "trade_items";buy[] = {8,"ItemGoldBar"};sell[] = {4,"ItemGoldBar"};};
|
||||
class Attachment_GP25 {type = "trade_items";buy[] = {4,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
|
||||
class Attachment_M203 {type = "trade_items";buy[] = {4,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
|
||||
};
|
||||
@@ -316,6 +318,106 @@ class Category_16 {
|
||||
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"};};
|
||||
//ACR Woodland
|
||||
class ACR_WDL_DZ {type = "trade_weapons";buy[] = {2,"ItemGoldBar10oz"};sell[] = {1,"ItemGoldBar10oz"};};
|
||||
class ACR_WDL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_WDL_CCO_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {12,"ItemGoldBar"};};
|
||||
class ACR_WDL_CCO_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_WDL_Holo_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {12,"ItemGoldBar"};};
|
||||
class ACR_WDL_Holo_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_WDL_ACOG_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_WDL_ACOG_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_WDL_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {12,"ItemGoldBar"};};
|
||||
class ACR_WDL_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_WDL_CCO_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_WDL_CCO_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_WDL_Holo_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_WDL_Holo_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_WDL_ACOG_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_WDL_ACOG_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {2,"ItemGoldBar10oz"};};
|
||||
class ACR_WDL_TWS_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_WDL_TWS_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_WDL_TWS_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_WDL_TWS_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {2,"ItemGoldBar10oz"};};
|
||||
class ACR_WDL_NV_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_WDL_NV_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_WDL_NV_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_WDL_NV_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {2,"ItemGoldBar10oz"};};
|
||||
//ACR Black
|
||||
class ACR_BL_DZ {type = "trade_weapons";buy[] = {2,"ItemGoldBar10oz"};sell[] = {1,"ItemGoldBar10oz"};};
|
||||
class ACR_BL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_BL_CCO_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {12,"ItemGoldBar"};};
|
||||
class ACR_BL_CCO_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_BL_Holo_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {12,"ItemGoldBar"};};
|
||||
class ACR_BL_Holo_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_BL_ACOG_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_BL_ACOG_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_BL_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {12,"ItemGoldBar"};};
|
||||
class ACR_BL_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_BL_CCO_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_BL_CCO_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_BL_Holo_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_BL_Holo_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_BL_ACOG_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_BL_ACOG_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {2,"ItemGoldBar10oz"};};
|
||||
class ACR_BL_TWS_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_BL_TWS_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_BL_TWS_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_BL_TWS_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {2,"ItemGoldBar10oz"};};
|
||||
class ACR_BL_NV_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_BL_NV_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_BL_NV_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_BL_NV_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {2,"ItemGoldBar10oz"};};
|
||||
//ACR Desert
|
||||
class ACR_DES_DZ {type = "trade_weapons";buy[] = {2,"ItemGoldBar10oz"};sell[] = {1,"ItemGoldBar10oz"};};
|
||||
class ACR_DES_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_DES_CCO_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {12,"ItemGoldBar"};};
|
||||
class ACR_DES_CCO_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_DES_Holo_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {12,"ItemGoldBar"};};
|
||||
class ACR_DES_Holo_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_DES_ACOG_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_DES_ACOG_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_DES_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {12,"ItemGoldBar"};};
|
||||
class ACR_DES_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_DES_CCO_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_DES_CCO_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_DES_Holo_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_DES_Holo_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_DES_ACOG_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_DES_ACOG_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {2,"ItemGoldBar10oz"};};
|
||||
class ACR_DES_TWS_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_DES_TWS_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_DES_TWS_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_DES_TWS_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {2,"ItemGoldBar10oz"};};
|
||||
class ACR_DES_NV_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_DES_NV_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_DES_NV_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_DES_NV_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {2,"ItemGoldBar10oz"};};
|
||||
//ACR Snow
|
||||
class ACR_SNOW_DZ {type = "trade_weapons";buy[] = {2,"ItemGoldBar10oz"};sell[] = {1,"ItemGoldBar10oz"};};
|
||||
class ACR_SNOW_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_SNOW_CCO_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {12,"ItemGoldBar"};};
|
||||
class ACR_SNOW_CCO_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_SNOW_Holo_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {12,"ItemGoldBar"};};
|
||||
class ACR_SNOW_Holo_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_SNOW_ACOG_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_SNOW_ACOG_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_SNOW_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {12,"ItemGoldBar"};};
|
||||
class ACR_SNOW_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_SNOW_CCO_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_SNOW_CCO_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_SNOW_Holo_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_SNOW_Holo_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_SNOW_ACOG_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_SNOW_ACOG_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {2,"ItemGoldBar10oz"};};
|
||||
class ACR_SNOW_TWS_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_SNOW_TWS_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_SNOW_TWS_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_SNOW_TWS_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {2,"ItemGoldBar10oz"};};
|
||||
class ACR_SNOW_NV_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {14,"ItemGoldBar"};};
|
||||
class ACR_SNOW_NV_GL_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {16,"ItemGoldBar"};};
|
||||
class ACR_SNOW_NV_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {18,"ItemGoldBar"};};
|
||||
class ACR_SNOW_NV_GL_SD_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar10oz"};sell[] = {2,"ItemGoldBar10oz"};};
|
||||
};
|
||||
|
||||
//Sniper Rifles
|
||||
|
||||
@@ -79,6 +79,7 @@ class CfgWeapons
|
||||
#include "Rifles\M4A1.hpp"
|
||||
//Famas
|
||||
#include "Rifles\Famas.hpp"
|
||||
#include "Rifles\ACR.hpp"
|
||||
|
||||
class M14_EP1;
|
||||
#include "Rifles\M14.hpp"
|
||||
|
||||
2866
SQF/dayz_code/Configs/CfgWeapons/Rifles/ACR.hpp
Normal file
2866
SQF/dayz_code/Configs/CfgWeapons/Rifles/ACR.hpp
Normal file
File diff suppressed because it is too large
Load Diff
@@ -403,6 +403,41 @@ class CfgAmmo
|
||||
hit = 7.0;
|
||||
};
|
||||
|
||||
//ACR
|
||||
class B_680x43_Ball: BulletBase
|
||||
{
|
||||
hit = 10;
|
||||
indirectHit = 0;
|
||||
indirectHitRange = 0;
|
||||
caliber = 0.7;
|
||||
visibleFire = 18;
|
||||
audibleFire = 16;
|
||||
cost = 1.1;
|
||||
airFriction = -0.0011787;
|
||||
model = "\ca\Weapons\Data\bullettracer\tracer_red";
|
||||
tracerScale = 1.1;
|
||||
tracerStartTime = 0.05;
|
||||
tracerEndTime = 1;
|
||||
typicalSpeed = 700;
|
||||
};
|
||||
class B_680x43_SD: BulletBase
|
||||
{
|
||||
hit = 9;
|
||||
indirectHit = 0;
|
||||
indirectHitRange = 0;
|
||||
caliber = 0.7;
|
||||
visibleFire = 0.08;
|
||||
audibleFire = 0.08;
|
||||
visibleFireTime = 2;
|
||||
cost = 1.1;
|
||||
airFriction = -0.0011787;
|
||||
model = "\ca\Weapons\Data\bullettracer\tracer_red";
|
||||
tracerScale = 1.1;
|
||||
tracerStartTime = 0.05;
|
||||
tracerEndTime = 1;
|
||||
typicalSpeed = 420;
|
||||
};
|
||||
|
||||
//mosin nagant
|
||||
/*class Mosin_762 : BulletBase
|
||||
{
|
||||
|
||||
@@ -11826,7 +11826,105 @@
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_FAMAS_HOLO_SD_NAME">
|
||||
<English>Famas Holo SD</English>
|
||||
</Key>
|
||||
|
||||
<!-- ACR -->
|
||||
<Key ID="STR_DZ_WPN_ACR_DESC">
|
||||
<English>Assault Rifle <br/>Caliber: 6.80x43mm</English>
|
||||
<German>Sturmgewehr <br/>Kaliber: 6.80x43mm</German>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_SD_DESC">
|
||||
<English>Silenced Assault Rifle <br/>Caliber: 6.80x43mm</English>
|
||||
<German>Schallgedämpftes Sturmgewehr <br/>Kaliber: 6.80x43mm</German>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_NV_DESC">
|
||||
<English>Assault Rifle with a night vision scope. <br/>Caliber: 6.80x43mm</English>
|
||||
<German>Sturmgewehr mit einem Nachtsichtvisier. <br/>Kaliber: 6.80x43mm</German>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_NV_SD_DESC">
|
||||
<English>Silenced Assault Rifle with a night vision scope. <br/>Caliber: 6.80x43mm</English>
|
||||
<German>Schallgedämpftes Sturmgewehr mit einem Nachtsichtvisier. <br/>Kaliber: 6.80x43mm</German>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_TWS_DESC">
|
||||
<English>Assault Rifle with a TWS scope. <br/>Caliber: 6.80x43mm</English>
|
||||
<German>Sturmgewehr mit einem wärmesuchenden Visier. <br/>Kaliber: 6.80x43mm</German>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_TWS_SD_DESC">
|
||||
<English>Silenced Assault Rifle with a TWS scope. <br/>Caliber: 6.80x43mm</English>
|
||||
<German>Schallgedämpftes Sturmgewehr mit einem wärmesuchenden Visier. <br/>Kaliber: 6.80x43mm</German>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_NAME">
|
||||
<English>ACR</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_COO_NAME">
|
||||
<English>ACR CCO</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_HOLO_NAME">
|
||||
<English>ACR Holo</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_ACOG_NAME">
|
||||
<English>ACR ACOG</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_GL_NAME">
|
||||
<English>ACR GL</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_TWS_NAME">
|
||||
<English>ACR TWS</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_TWS_SD_NAME">
|
||||
<English>ACR TWS SD</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_TWS_GL_NAME">
|
||||
<English>ACR TWS GL</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_TWS_GL_SD_NAME">
|
||||
<English>ACR TWS GL SD</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_CCO_GL_NAME">
|
||||
<English>ACR CCO GL</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_HOLO_GL_NAME">
|
||||
<English>ACR Holo GL</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_SD_NAME">
|
||||
<English>ACR SD</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_COO_SD_NAME">
|
||||
<English>ACR CCO SD</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_ACOG_SD_NAME">
|
||||
<English>ACR ACOG SD</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_ACOG_GL_NAME">
|
||||
<English>ACR ACOG GL</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_ACOG_GL_SD_NAME">
|
||||
<English>ACR ACOG GL SD</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_GL_SD_NAME">
|
||||
<English>ACR GL SD</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_CCO_GL_SD_NAME">
|
||||
<English>ACR CCO GL SD</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_HOLO_SD_NAME">
|
||||
<English>ACR Holo SD</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_HOLO_GL_SD_NAME">
|
||||
<English>ACR Holo GL SD</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_NV_GL_NAME">
|
||||
<English>ACR NV GL</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_NV_GL_SD_NAME">
|
||||
<English>ACR NV GL SD</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_NV_SD_NAME">
|
||||
<English>ACR NV SD</English>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_WPN_ACR_NV_NAME">
|
||||
<English>ACR NV</English>
|
||||
</Key>
|
||||
|
||||
<!-- **** MAGAZINES **** -->
|
||||
|
||||
@@ -12259,6 +12357,41 @@
|
||||
<Czech>Kalibr: 10x22mm SD<br/>Nábojů: 15<br/>Pro: P99 SD</Czech>
|
||||
<English>Caliber: 10x22mm SD<br/>Rounds: 15<br/>Used in: P99 SD</English>
|
||||
<Japanese>Caliber: 10x22mm SD<br/>Rounds: 15<br/>Used in: P99 SD</Japanese>
|
||||
</Key>
|
||||
|
||||
<Key ID="STR_DZ_MAG_30RND_ACR_NAME">
|
||||
<English>30Rnd. ACR mag.</English>
|
||||
<Russian>30п. ACR маг.</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_MAG_30RND_ACRSD_NAME">
|
||||
<English>30Rnd. ACR SD mag.</English>
|
||||
<Russian>30п. ACR SD маг.</Russian>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_MAG_30RND_ACR_DESC">
|
||||
<Chinese>Caliber: 6.80x43mm<br/>Rounds: 30<br/>Used in: ACR</Chinese>
|
||||
<French>Calibre : 6.80x43mm<br/>Munitions : 30<br/>Utilisé avec : ACR</French>
|
||||
<Spanish>Calibre: 6.80x43mm<br/>Cartuchos: 30<br/>Usado en: ACR</Spanish>
|
||||
<Italian>Calibro: 6.80x43mm<br/>Munizioni: 30<br/>Usato in: ACR</Italian>
|
||||
<Hungarian>Caliber: 6.80x43mm<br/>Rounds: 30<br/>Used in: ACR</Hungarian>
|
||||
<Polish>Kaliber: 6.80x43mm<br/>Naboje: 30<br/>Uzywany w: ACR</Polish>
|
||||
<Russian>Патрон: 6.80x43 мм<br/>Количество: 30<br/>Исп. в: ACR</Russian>
|
||||
<German>Kaliber: 6.80x43mm<br/>Patronen: 30<br/>Eingesetzt in: ACR</German>
|
||||
<Czech>Kalibr: 6.80x43mm<br/>Nábojů: 30<br/>Pro: ACR</Czech>
|
||||
<English>Caliber: 6.80x43mm<br/>Rounds: 30<br/>Used in: ACR</English>
|
||||
<Japanese>Caliber: 6.80x43mm<br/>Rounds: 30<br/>Used in: ACR</Japanese>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_MAG_30RND_ACRSD_DESC">
|
||||
<Chinese>Caliber: 6.80x43mm SD<br/>Rounds: 30<br/>Used in: ACR SD</Chinese>
|
||||
<French>Calibre : 6.80x43mm SD<br/>Munitions : 30<br/>Utilisé avec : ACR SD</French>
|
||||
<Spanish>Calibre: 6.80x43mm SD<br/>Cartuchos: 30<br/>Usado en: ACR SD</Spanish>
|
||||
<Italian>Calibro: 6.80x43mm SD<br/>Munizioni: 30<br/>Usato in: ACR SD</Italian>
|
||||
<Hungarian>Caliber: 6.80x43mm SD<br/>Rounds: 30<br/>Used in: ACR SD</Hungarian>
|
||||
<Polish>Kaliber: 6.80x43mm SD<br/>Naboje: 30<br/>Uzywany w: ACR SD</Polish>
|
||||
<Russian>Патрон: 6.80x43 мм SD<br/>Количество: 30<br/>Исп. в: ACR SD</Russian>
|
||||
<German>Kaliber: 6.80x43mm SD<br/>Patronen: 30<br/>Eingesetzt in: ACR SD</German>
|
||||
<Czech>Kalibr: 6.80x43mm SD<br/>Nábojů: 30<br/>Pro: ACR SD</Czech>
|
||||
<English>Caliber: 6.80x43mm SD<br/>Rounds: 30<br/>Used in: ACR SD</English>
|
||||
<Japanese>Caliber: 6.80x43mm SD<br/>Rounds: 30<br/>Used in: ACR SD</Japanese>
|
||||
</Key>
|
||||
|
||||
<!-- **** ATTACHMENTS **** -->
|
||||
@@ -12322,7 +12455,17 @@
|
||||
<Russian>ПБС для калибра 10мм</Russian>
|
||||
<German>10mm Schalldämpfer</German>
|
||||
</Key>
|
||||
|
||||
<!-- 6.8mm Suppressor ACR-->
|
||||
<Key ID="STR_DZ_ATT_SUP68_NAME">
|
||||
<English>[A] 6.80mm Suppressor</English>
|
||||
<Russian>[М] 6.80мм глушитель</Russian>
|
||||
<German>[E] 6.80mm Schalldämpfer</German>
|
||||
</Key>
|
||||
<Key ID="STR_DZ_ATT_SUP68_DESC">
|
||||
<English>6.80mm Sound suppressor</English>
|
||||
<Russian>ПБС для калибра 6.80мм</Russian>
|
||||
<German>6.80mm Schalldämpfer</German>
|
||||
</Key>
|
||||
<!-- 5.56mm Suppressor -->
|
||||
<Key ID="STR_DZ_ATT_SUP556_NAME">
|
||||
<English>[A] 5.56mm Suppressor</English>
|
||||
@@ -12644,6 +12787,10 @@
|
||||
<English>A TWS scope.</English>
|
||||
<German>Zielfernrohr vom Typ TWS.</German>
|
||||
</Key>
|
||||
<Key ID="STR_ATTACHMENT_RMVE_TWS">
|
||||
<English>Remove TWS scope</English>
|
||||
<German>TWS entfernen</German>
|
||||
</Key>
|
||||
<Key ID="STR_DZE_ATTACHMENT_45SUP_NAME">
|
||||
<English>[A] .45cal Suppressor</English>
|
||||
<German>[E] .45cal Schalldämpfer</German>
|
||||
|
||||
Reference in New Issue
Block a user