mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
Add CZ 805 DZ versions
Ive also reordered the stringtable a bit
This commit is contained in:
@@ -153,11 +153,11 @@ weaponsCZ[] =
|
||||
{Loot_WEAPON, 6, Sa58V_CCO_EP1},
|
||||
{Loot_WEAPON, 6, Sa58V_RCO_EP1},
|
||||
{Loot_WEAPON, 6, SA58_RIS_DZ},
|
||||
{Loot_WEAPON, 6, CZ805_A1_ACR},
|
||||
{Loot_WEAPON, 6, CZ805_A1_GL_ACR},
|
||||
{Loot_WEAPON, 6, CZ805_A2_ACR},
|
||||
{Loot_WEAPON, 6, CZ805_A2_SD_ACR},
|
||||
{Loot_WEAPON, 3, CZ805_B_GL_ACR}, // 7.62x51, uses SCAR mags.
|
||||
{Loot_WEAPON, 6, CZ805_A1_DZ},
|
||||
{Loot_WEAPON, 6, CZ805_A1_GL_DZ},
|
||||
{Loot_WEAPON, 6, CZ805_A2_DZ},
|
||||
{Loot_WEAPON, 6, CZ805_A2_SD_DZ},
|
||||
{Loot_WEAPON, 3, CZ805_B_GL_DZ}, // 7.62x51, uses SCAR mags.
|
||||
|
||||
// Machine Gun
|
||||
{Loot_WEAPON, 6, UK59_DZ}
|
||||
|
||||
@@ -76,6 +76,7 @@ class 20Rnd_762x51_B_SCAR : CA_Magazine
|
||||
{
|
||||
model = "dayz_epoch_c\models\magazines\mk17_mag.p3d";
|
||||
displayName = $STR_DZ_MAG_20Rnd_762x51_B_SCAR_NAME;
|
||||
descriptionShort = $STR_DZ_MAG_20RND_MK17_DESC;
|
||||
|
||||
cartridgeName = "762x51";
|
||||
|
||||
|
||||
@@ -95,6 +95,10 @@ class Category_16 {
|
||||
class m8_sharpshooter {type = "trade_weapons";buy[] = {8,"ItemGoldBar"};sell[] = {4,"ItemGoldBar"};};
|
||||
class m8_holo_sd {type = "trade_weapons";buy[] = {8,"ItemGoldBar"};sell[] = {4,"ItemGoldBar"};};
|
||||
class m8_carbine {type = "trade_weapons";buy[] = {5,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
|
||||
class CZ805_A1_DZ {type = "trade_weapons";buy[] = {5,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
|
||||
class CZ805_A1_GL_DZ {type = "trade_weapons";buy[] = {6,"ItemGoldBar"};sell[] = {3,"ItemGoldBar"};};
|
||||
class CZ805_A2_DZ {type = "trade_weapons";buy[] = {4,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
|
||||
class CZ805_A2_SD_DZ {type = "trade_weapons";buy[] = {8,"ItemGoldBar"};sell[] = {4,"ItemGoldBar"};};
|
||||
class G36C_DZ {type = "trade_weapons";buy[] = {4,"ItemGoldBar"};sell[] = {2,"ItemGoldBar"};};
|
||||
class G36C_CCO_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {4,"ItemGoldBar"};};
|
||||
class G36C_Holo_DZ {type = "trade_weapons";buy[] = {-1,"ItemGoldBar"};sell[] = {4,"ItemGoldBar"};};
|
||||
@@ -274,6 +278,7 @@ class Category_16 {
|
||||
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"};};
|
||||
};
|
||||
|
||||
//Sniper Rifles
|
||||
|
||||
@@ -81,6 +81,8 @@ class CfgWeapons
|
||||
class M14_EP1;
|
||||
#include "Rifles\M14.hpp"
|
||||
|
||||
#include "Rifles\CZ805.hpp"
|
||||
|
||||
class M24 : Rifle
|
||||
{
|
||||
class OpticsModes
|
||||
|
||||
30
SQF/dayz_code/Configs/CfgWeapons/Rifles/CZ805.hpp
Normal file
30
SQF/dayz_code/Configs/CfgWeapons/Rifles/CZ805.hpp
Normal file
@@ -0,0 +1,30 @@
|
||||
class CZ805_A1_ACR;
|
||||
class CZ805_A1_DZ: CZ805_A1_ACR {
|
||||
displayName = $STR_DZ_WPN_CZ_805A1_NAME;
|
||||
descriptionShort = $STR_DZ_WPN_CZ_805A_DESC;
|
||||
};
|
||||
|
||||
class CZ805_A1_GL_ACR;
|
||||
class CZ805_A1_GL_DZ: CZ805_A1_GL_ACR {
|
||||
displayName = $STR_DZ_WPN_CZ_805A1_GL_NAME;
|
||||
descriptionShort = $STR_DZ_WPN_CZ_805A_DESC;
|
||||
};
|
||||
|
||||
class CZ805_A2_ACR;
|
||||
class CZ805_A2_DZ: CZ805_A2_ACR {
|
||||
displayName = $STR_DZ_WPN_CZ_805A2_NAME;
|
||||
descriptionShort = $STR_DZ_WPN_CZ_805A_DESC;
|
||||
};
|
||||
|
||||
class CZ805_A2_SD_ACR;
|
||||
class CZ805_A2_SD_DZ: CZ805_A2_SD_ACR {
|
||||
displayName = $STR_DZ_WPN_CZ_805A2_SD_NAME;
|
||||
descriptionShort = $STR_DZ_WPN_CZ_805A_DESC;
|
||||
};
|
||||
|
||||
class CZ805_B_GL_ACR;
|
||||
class CZ805_B_GL_DZ: CZ805_B_GL_ACR {
|
||||
displayName = $STR_DZ_WPN_CZ_805B_NAME;
|
||||
descriptionShort = $STR_DZ_WPN_CZ_805B_DESC;
|
||||
magazines[] = {"20Rnd_762x51_B_SCAR"};
|
||||
};
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user