From 7695964869156ac0482f5497112dc43eb9a6734c Mon Sep 17 00:00:00 2001 From: AirwavesMan Date: Thu, 20 Aug 2020 19:20:02 +0200 Subject: [PATCH] Add some rusty vehicle versions Thx to Tecumseh for the idea. Big thanks to Marseille77 for creating those rusty textures. --- README.md | 2 +- .../Configs/CfgVehicles/Car/BMP2.hpp | 6 + .../Configs/CfgVehicles/Car/BRDM2_DZ.hpp | 125 ++++++++++++++++++ SQF/dayz_code/Configs/CfgVehicles/Car/T72.hpp | 5 + SQF/dayz_code/Configs/CfgVehicles/Car/UAZ.hpp | 96 ++++++++++++++ .../Configs/CfgVehicles/Car/UAZ_MG.hpp | 110 +++++++++++++++ .../Configs/CfgVehicles/Car/UralCivil_DZ.hpp | 54 ++++++++ .../Configs/CfgVehicles/CfgVehicles.hpp | 1 + .../Configs/CfgVehicles/Helicopter/MI17.hpp | 16 +++ SQF/dayz_code/stringtable.xml | 114 +++++++++++++++- 10 files changed, 527 insertions(+), 2 deletions(-) create mode 100644 SQF/dayz_code/Configs/CfgVehicles/Car/T72.hpp diff --git a/README.md b/README.md index 777503b66..8f58e5be3 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Included Custom Addons * German Civil Pack by Marseille77 - http://www.armaholic.com/page.php?id=9793 * Sahrani Rearmed: Sahrani Civilians by Marseille77 - http://www.armaholic.com/page.php?id=24325 * Modern Irish Defence Forces - Steyr Aug A3 Pack by SyNcRoNiCzZ - http://www.armaholic.com/page.php?id=9505 - +* Standard Vehicles Pack by Marseille77 - https://www.armaholic.com/page.php?id=10730 -------------------------- Included Custom Islands -------------------------- diff --git a/SQF/dayz_code/Configs/CfgVehicles/Car/BMP2.hpp b/SQF/dayz_code/Configs/CfgVehicles/Car/BMP2.hpp index ec8063379..8b6f6a466 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Car/BMP2.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Car/BMP2.hpp @@ -366,4 +366,10 @@ class BMP2_Ambul_CDF_DZE4: BMP2_Ambul_CDF_DZE3 { displayName = "$STR_VEH_NAME_BMP2_AMBULANCE_CDF++++"; displayNameShort = "$STR_VEH_NAME_BMP2_AMBULANCE_CDF++++"; fuelCapacity = 1200; // base 700 +}; + +class BMP2_INS; +class BMP2_RUST: BMP2_INS { + displayName = "$STR_VEH_NAME_BMP2_RUST"; + hiddenSelectionsTextures[] = {"\dayz_epoch_c\skins\bmp\bmp2_01_wrecked_co.paa","\dayz_epoch_c\skins\bmp\bmp2_02_wrecked_co.paa"}; }; \ No newline at end of file diff --git a/SQF/dayz_code/Configs/CfgVehicles/Car/BRDM2_DZ.hpp b/SQF/dayz_code/Configs/CfgVehicles/Car/BRDM2_DZ.hpp index b08f9c4bb..3f25299ee 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Car/BRDM2_DZ.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Car/BRDM2_DZ.hpp @@ -102,10 +102,73 @@ class BRDM2_HQ_TK_GUE_EP1_DZE4: BRDM2_HQ_TK_GUE_EP1_DZE3 fuelCapacity = 180; // base 100 }; +class BRDM2_HQ_RUST_DZ: BRDM2_HQ_TK_GUE_EP1_DZ { + displayname = "$STR_VEH_NAME_BRDM2_HQ_RUST"; + hiddenSelectionsTextures[] = {"\dayz_epoch_c\skins\brdm\brdm2_01_wrecked_co.paa","\dayz_epoch_c\skins\brdm\brdm2_02_wrecked_co.paa"}; +}; + +class BRDM2_HQ_RUST_DZE: BRDM2_HQ_RUST_DZ { + class Turrets: Turrets { + class MainTurret: MainTurret { + magazines[] = {}; + }; + }; + + class Upgrades + { + ItemORP[] = {"BRDM2_HQ_RUST_DZE1",{"ItemToolbox"},{},{{"ItemORP",1},{"PartEngine",2},{"PartWheel",4},{"ItemScrews",2}}}; + }; +}; + +class BRDM2_HQ_RUST_DZE1: BRDM2_HQ_RUST_DZE +{ + displayName = "$STR_VEH_NAME_BRDM2_HQ_RUST+"; + original = "BRDM2_HQ_RUST_DZE"; + maxSpeed = 115; //base 100 + terrainCoef = 1; //base 2 + + class Upgrades + { + ItemAVE[] = {"BRDM2_HQ_RUST_DZE2",{"ItemToolbox"},{},{{"ItemAVE",1 },{"equip_metal_sheet",6},{"ItemScrews",4}}}; + }; +}; + +class BRDM2_HQ_RUST_DZE2: BRDM2_HQ_RUST_DZE1 +{ + displayName = "$STR_VEH_NAME_BRDM2_HQ_RUST++"; + armor = 170; // base 120 + damageResistance = 0.048; // base 0.02409 + + class Upgrades + { + ItemLRK[] = {"BRDM2_HQ_RUST_DZE3",{"ItemToolbox"},{},{{"ItemLRK",1},{"PartGeneric",4},{"ItemWoodCrateKit",2},{"ItemGunRackKit",2},{"ItemScrews",2}}}; + }; +}; + +class BRDM2_HQ_RUST_DZE3: BRDM2_HQ_RUST_DZE2 +{ + displayName = "$STR_VEH_NAME_BRDM2_HQ_RUST+++"; + transportMaxWeapons = 40; + transportMaxMagazines = 400; + transportmaxbackpacks = 12; + + class Upgrades + { + ItemTNK[] = {"BRDM2_HQ_RUST_DZE4",{"ItemToolbox"},{},{{"ItemTNK",1},{"PartGeneric",4},{"PartFueltank",2},{"ItemFuelBarrel",1}}}; + }; +}; + +class BRDM2_HQ_RUST_DZE4: BRDM2_HQ_RUST_DZE3 +{ + displayName = "$STR_VEH_NAME_BRDM2_HQ_RUST++++"; + fuelCapacity = 180; // base 100 +}; + class BRDM2_TK_EP1: BRDM2_Base { class Turrets; // External class reference class MainTurret; // External class reference }; + class BRDM2_TK_EP1_DZ: BRDM2_TK_EP1 { displayname = "$STR_VEH_NAME_BRDM2_TK"; vehicleClass = "DayZ Epoch Vehicles"; @@ -327,4 +390,66 @@ class BRDM2_Desert_ACR_DZE4: BRDM2_Desert_ACR_DZE3 { displayName = "$STR_VEH_NAME_BRDM2_DES++++"; fuelCapacity = 180; // base 100 +}; + +class BRDM2_RUST_DZ: BRDM2_TK_EP1_DZ { + displayname = "$STR_VEH_NAME_BRDM2_RUST"; + hiddenSelectionsTextures[] = {"\dayz_epoch_c\skins\brdm\brdm2_01_wrecked_co.paa","\dayz_epoch_c\skins\brdm\brdm2_02_wrecked_co.paa"}; +}; + +class BRDM2_RUST_DZE: BRDM2_RUST_DZ { + class Turrets: Turrets { + class MainTurret: MainTurret { + magazines[] = {}; + }; + }; + + class Upgrades + { + ItemORP[] = {"BRDM2_RUST_DZE1",{"ItemToolbox"},{},{{"ItemORP",1},{"PartEngine",2},{"PartWheel",4},{"ItemScrews",2}}}; + }; +}; + +class BRDM2_RUST_DZE1: BRDM2_RUST_DZE +{ + displayName = "$STR_VEH_NAME_BRDM2_RUST+"; + original = "BRDM2_RUST_DZE"; + maxSpeed = 115; //base 100 + terrainCoef = 1; //base 2 + + class Upgrades + { + ItemAVE[] = {"BRDM2_RUST_DZE2",{"ItemToolbox"},{},{{"ItemAVE",1 },{"equip_metal_sheet",6},{"ItemScrews",4}}}; + }; +}; + +class BRDM2_RUST_DZE2: BRDM2_RUST_DZE1 +{ + displayName = "$STR_VEH_NAME_BRDM2_RUST++"; + armor = 170; // base 120 + damageResistance = 0.048; // base 0.02409 + + class Upgrades + { + ItemLRK[] = {"BRDM2_RUST_DZE3",{"ItemToolbox"},{},{{"ItemLRK",1},{"PartGeneric",4},{"ItemWoodCrateKit",2},{"ItemGunRackKit",2},{"ItemScrews",2}}}; + }; +}; + +class BRDM2_RUST_DZE3: BRDM2_RUST_DZE2 +{ + displayName = "$STR_VEH_NAME_BRDM2_RUST+++"; + transportMaxWeapons = 40; + transportMaxMagazines = 400; + transportmaxbackpacks = 12; + + class Upgrades + { + ItemTNK[] = {"BRDM2_RUST_DZE4",{"ItemToolbox"},{},{{"ItemTNK",1},{"PartGeneric",4},{"PartFueltank",2},{"ItemFuelBarrel",1}}}; + }; +}; + +class BRDM2_RUST_DZE4: BRDM2_RUST_DZE3 +{ + displayName = "$STR_VEH_NAME_BRDM2_RUST++++"; + fuelCapacity = 180; // base 100 }; \ No newline at end of file diff --git a/SQF/dayz_code/Configs/CfgVehicles/Car/T72.hpp b/SQF/dayz_code/Configs/CfgVehicles/Car/T72.hpp new file mode 100644 index 000000000..911168b41 --- /dev/null +++ b/SQF/dayz_code/Configs/CfgVehicles/Car/T72.hpp @@ -0,0 +1,5 @@ +class T72_INS; +class T72_RUST: T72_INS { + displayName = "$STR_VEH_NAME_T72_RUST"; + hiddenSelectionsTextures[] = {"\dayz_epoch_c\skins\t72\T72_1_wrecked_co.paa","\dayz_epoch_c\skins\t72\T72_2_wrecked_co.paa","\dayz_epoch_c\skins\t72\T72_3_wrecked_co.paa"}; +}; \ No newline at end of file diff --git a/SQF/dayz_code/Configs/CfgVehicles/Car/UAZ.hpp b/SQF/dayz_code/Configs/CfgVehicles/Car/UAZ.hpp index 5f9fb2ed0..5e8a3b063 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Car/UAZ.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Car/UAZ.hpp @@ -572,4 +572,100 @@ class UAZ_Unarmed_TK_CIV_EP1_DZE3: UAZ_Unarmed_TK_CIV_EP1_DZE2 { class UAZ_Unarmed_TK_CIV_EP1_DZE4: UAZ_Unarmed_TK_CIV_EP1_DZE3 { displayName = "$STR_VEH_NAME_UAZ_CIVIL++++"; fuelCapacity = 210; // car 100 +}; + +class UAZ_Rust_DZE: UAZ_Unarmed_TK_CIV_EP1 { + scope = 2; + displayName = "$STR_VEH_NAME_UAZ_RUSTY"; + hiddenSelectionsTextures[] = {"\dayz_epoch_c\skins\uaz\uaz_main_wrecked_co.paa"}; + vehicleClass = "DayZ Epoch Vehicles"; + crew = ""; + typicalCargo[] = {}; + class TransportMagazines {}; + class TransportWeapons {}; + class HitPoints; + class HitLFWheel; + class HitLBWheel; + class HitRFWheel; + class HitRBWheel; + class HitFuel; + class HitEngine; + class HitGlass1; + class HitGlass2; + class HitGlass3; + class HitGlass4; + supplyRadius = 1.3; + + class Upgrades { + ItemORP[] = {"UAZ_Rust_DZE1",{"ItemToolbox"},{},{{"ItemORP",1},{"PartEngine",1},{"PartWheel",4},{"ItemScrews",2}}}; + }; +}; + +class UAZ_Rust_DZE1: UAZ_Rust_DZE { + displayName = "$STR_VEH_NAME_UAZ_RUSTY+"; + original = "UAZ_Rust_DZE"; + maxspeed = 190; + terrainCoef = 1; + + class Upgrades { + ItemAVE[] = {"UAZ_Rust_DZE2",{"ItemToolbox"},{},{{"ItemAVE",1 },{"PartGeneric",6},{"ItemScrews",4}}}; + }; +}; + +class UAZ_Rust_DZE2: UAZ_Rust_DZE1 { + displayName = "$STR_VEH_NAME_UAZ_RUSTY++"; + armor = 75; // UAZ 40 + damageResistance = 0.02099; + class HitPoints: HitPoints { + class HitLFWheel: HitLFWheel { + armor = 0.3; + }; + class HitLBWheel: HitLBWheel { + armor = 0.3; + }; + class HitRFWheel: HitRFWheel { + armor = 0.3; + }; + class HitRBWheel: HitRBWheel { + armor = 0.3; + }; + class HitFuel: HitFuel { + armor = 0.5; + }; + class HitEngine: HitEngine { + armor = 1; + }; + class HitGlass1: HitGlass1 { + armor = 0.3; + }; + class HitGlass2: HitGlass2 { + armor = 0.3; + }; + class HitGlass3: HitGlass3 { + armor = 0.3; + }; + class HitGlass4: HitGlass4 { + armor = 0.3; + }; + }; + + class Upgrades { + ItemLRK[] = {"UAZ_Rust_DZE3",{"ItemToolbox"},{},{{"ItemLRK",1},{"PartGeneric",2},{"ItemWoodCrateKit",1},{"ItemGunRackKit",1},{"ItemScrews",2}}}; + }; +}; + +class UAZ_Rust_DZE3: UAZ_Rust_DZE2 { + displayName = "$STR_VEH_NAME_UAZ_RUSTY+++"; + transportMaxWeapons = 20; // car 10 + transportMaxMagazines = 100; // car 50 + transportmaxbackpacks = 9; // car 2, UAZ 7 + + class Upgrades { + ItemTNK[] = {"UAZ_Rust_DZE4",{"ItemToolbox"},{},{{"ItemTNK",1},{"PartGeneric",2},{"PartFueltank",1},{"ItemJerrycan",2},{"ItemScrews",1}}}; + }; +}; + +class UAZ_Rust_DZE4: UAZ_Rust_DZE3 { + displayName = "$STR_VEH_NAME_UAZ_RUSTY++++"; + fuelCapacity = 210; // car 100 }; \ No newline at end of file diff --git a/SQF/dayz_code/Configs/CfgVehicles/Car/UAZ_MG.hpp b/SQF/dayz_code/Configs/CfgVehicles/Car/UAZ_MG.hpp index b651f422d..48d68f8b0 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Car/UAZ_MG.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Car/UAZ_MG.hpp @@ -106,4 +106,114 @@ class UAZ_MG_TK_EP1_DZE3: UAZ_MG_TK_EP1_DZE2 { class UAZ_MG_TK_EP1_DZE4: UAZ_MG_TK_EP1_DZE3 { displayName = "$STR_VEH_NAME_UAZ_DSHKM++++"; fuelCapacity = 210; // car 100 +}; + +class UAZ_MG_RUST_EP1_DZ: UAZ_MG_TK_EP1 +{ + scope = 2; + displayName = "$STR_VEH_NAME_UAZ_DSHKM_RUST"; + hiddenSelectionsTextures[] = {"\dayz_epoch_c\skins\uaz\uaz_main_wrecked_co.paa","\ca\wheeled\data\uaz_mount_002_co.paa"}; + vehicleClass = "DayZ Epoch Vehicles"; + crew = ""; + typicalCargo[] = {}; + class TransportMagazines {}; + class TransportWeapons {}; + class Turrets; + class MainTurret; + supplyRadius = 1.3; + class HitPoints; + class HitLFWheel; + class HitLBWheel; + class HitRFWheel; + class HitRBWheel; + class HitFuel; + class HitEngine; + class HitGlass1; + class HitGlass2; + class HitGlass3; + class HitGlass4; +}; + +class UAZ_MG_RUST_EP1_DZE: UAZ_MG_RUST_EP1_DZ +{ + class Turrets: Turrets + { + class MainTurret: MainTurret + { + magazines[] = {}; + }; + }; + + class Upgrades { + ItemORP[] = {"UAZ_MG_RUST_EP1_DZE1",{"ItemToolbox"},{},{{"ItemORP",1},{"PartEngine",1},{"PartWheel",4},{"ItemScrews",2}}}; + }; +}; + +class UAZ_MG_RUST_EP1_DZE1: UAZ_MG_RUST_EP1_DZE { + displayName = "$STR_VEH_NAME_UAZ_DSHKM_RUST+"; + original = "UAZ_MG_RUST_EP1_DZE"; + maxspeed = 190; + terrainCoef = 1; + + class Upgrades { + ItemAVE[] = {"UAZ_MG_RUST_EP1_DZE2",{"ItemToolbox"},{},{{"ItemAVE",1 },{"PartGeneric",6},{"ItemScrews",4}}}; + }; +}; + +class UAZ_MG_RUST_EP1_DZE2: UAZ_MG_RUST_EP1_DZE1 { + displayName = "$STR_VEH_NAME_UAZ_DSHKM_RUST++"; + armor = 75; // UAZ 40 + damageResistance = 0.02099; + class HitPoints: HitPoints { + class HitLFWheel: HitLFWheel { + armor = 0.3; + }; + class HitLBWheel: HitLBWheel { + armor = 0.3; + }; + class HitRFWheel: HitRFWheel { + armor = 0.3; + }; + class HitRBWheel: HitRBWheel { + armor = 0.3; + }; + class HitFuel: HitFuel { + armor = 0.5; + }; + class HitEngine: HitEngine { + armor = 1; + }; + class HitGlass1: HitGlass1 { + armor = 0.3; + }; + class HitGlass2: HitGlass2 { + armor = 0.3; + }; + class HitGlass3: HitGlass3 { + armor = 0.3; + }; + class HitGlass4: HitGlass4 { + armor = 0.3; + }; + }; + + class Upgrades { + ItemLRK[] = {"UAZ_MG_RUST_EP1_DZE3",{"ItemToolbox"},{},{{"ItemLRK",1},{"PartGeneric",2},{"ItemWoodCrateKit",1},{"ItemGunRackKit",1},{"ItemScrews",2}}}; + }; +}; + +class UAZ_MG_RUST_EP1_DZE3: UAZ_MG_RUST_EP1_DZE2 { + displayName = "$STR_VEH_NAME_UAZ_DSHKM_RUST+++"; + transportMaxWeapons = 20; // car 10 + transportMaxMagazines = 100; // car 50 + transportmaxbackpacks = 9; // car 2, UAZ 7 + + class Upgrades { + ItemTNK[] = {"UAZ_MG_RUST_EP1_DZE4",{"ItemToolbox"},{},{{"ItemTNK",1},{"PartGeneric",2},{"PartFueltank",1},{"ItemJerrycan",2},{"ItemScrews",1}}}; + }; +}; + +class UAZ_MG_RUST_EP1_DZE4: UAZ_MG_RUST_EP1_DZE3 { + displayName = "$STR_VEH_NAME_UAZ_DSHKM_RUST++++"; + fuelCapacity = 210; // car 100 }; \ No newline at end of file diff --git a/SQF/dayz_code/Configs/CfgVehicles/Car/UralCivil_DZ.hpp b/SQF/dayz_code/Configs/CfgVehicles/Car/UralCivil_DZ.hpp index 197bd7028..b6d539672 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Car/UralCivil_DZ.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Car/UralCivil_DZ.hpp @@ -52,6 +52,60 @@ class Ural_INS_DZE4: Ural_INS_DZE3 { fuelCapacity = 615; }; +class Ural_RUST_DZE: Ural_INS { + scope = 2; + crew = ""; + displayName = "$STR_VEH_NAME_URAL_RUST"; + hiddenSelectionsTextures[] = {"\dayz_epoch_c\skins\ural\ural_kabina_wrecked_co.paa","dayz_epoch_c\skins\ural\ural_plachta_wrecked_co.paa"}; + typicalCargo[] = {}; + class TransportMagazines {}; + class TransportWeapons {}; + vehicleClass = "DayZ Epoch Vehicles"; + supplyRadius = 2.6; + + class Upgrades { + ItemTruckORP[] = {"Ural_RUST_DZE1",{"ItemToolbox","ItemCrowbar"},{},{{"ItemTruckORP",1},{"PartEngine",2},{"PartWheel",6},{"ItemScrews",2}}}; + }; +}; + +class Ural_RUST_DZE1: Ural_RUST_DZE { + displayName = "$STR_VEH_NAME_URAL_RUST+"; + original = "Ural_RUST_DZE"; + maxspeed = 100; //base 80 + terrainCoef = 1.8; // base 2.0 + turnCoef = 2.0; // base 3.7 + + class Upgrades { + ItemTruckAVE[] = {"Ural_RUST_DZE2",{"ItemToolbox","ItemCrowbar"},{},{{"ItemTruckAVE",1},{"PartGeneric",2},{"equip_metal_sheet",5},{"ItemScrews",4}}}; + }; +}; + +class Ural_RUST_DZE2: Ural_RUST_DZE1 { + displayName = "$STR_VEH_NAME_URAL_RUST++"; + armor = 70; //base 32 + damageResistance = 0.0255; // base 0.00243 + + class Upgrades { + ItemTruckLRK[] = {"Ural_RUST_DZE3",{"ItemToolbox","ItemCrowbar"},{},{{"ItemTruckLRK",1},{"PartGeneric",4},{"ItemWoodCrateKit",2},{"ItemGunRackKit",2},{"ItemScrews",2}}}; + }; +}; + +class Ural_RUST_DZE3: Ural_RUST_DZE2 { + displayName = "$STR_VEH_NAME_URAL_RUST+++"; + transportMaxWeapons = 100; + transportMaxMagazines = 400; + transportmaxbackpacks = 16; + + class Upgrades { + ItemTruckTNK[] = {"Ural_RUST_DZE4",{"ItemToolbox","ItemCrowbar"},{},{{"ItemTruckTNK",1},{"PartGeneric",4},{"PartFueltank",3},{"ItemFuelBarrel",2}}}; + }; +}; + +class Ural_RUST_DZE4: Ural_RUST_DZE3 { + displayName = "$STR_VEH_NAME_URAL_RUST++++"; + fuelCapacity = 615; +}; + class Ural_CDF; class Ural_CDF_DZE: Ural_CDF { scope = 2; diff --git a/SQF/dayz_code/Configs/CfgVehicles/CfgVehicles.hpp b/SQF/dayz_code/Configs/CfgVehicles/CfgVehicles.hpp index 9407bf510..7b804d966 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/CfgVehicles.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/CfgVehicles.hpp @@ -387,6 +387,7 @@ class CfgVehicles #include "Car\Octavia.hpp" #include "Car\Tatra_T810.hpp" #include "Car\BMP2.hpp" + #include "Car\T72.hpp" //Helicopters #include "Helicopter\MI17.hpp" #include "Helicopter\UH1H.hpp" diff --git a/SQF/dayz_code/Configs/CfgVehicles/Helicopter/MI17.hpp b/SQF/dayz_code/Configs/CfgVehicles/Helicopter/MI17.hpp index ec719f8b1..cbe4a8d78 100644 --- a/SQF/dayz_code/Configs/CfgVehicles/Helicopter/MI17.hpp +++ b/SQF/dayz_code/Configs/CfgVehicles/Helicopter/MI17.hpp @@ -428,6 +428,22 @@ class Mi17_BLACK_DZE: Mi17_DZE { hiddenSelectionsTextures[] = {"dayz_epoch_c\skins\mi17\mi17_body4_co.paa","dayz_epoch_c\skins\mi17\mi17_det_co.paa"}; }; +class Mi17_RUST_DZ: Mi17_CDF_DZ { + displayname = "$STR_VEH_NAME_MI17_RUST"; + hiddenSelectionsTextures[] = {"\dayz_epoch_c\skins\mi17\mi8_body_crash_co.paa","ca\air\data\mi8_det_g_co.paa","ca\air\data\clear_empty.paa","ca\air\data\mi8_decals_ca.paa"}; +}; + +class Mi17_RUST_DZE: Mi17_RUST_DZ { + class Turrets : Turrets { + class MainTurret : MainTurret { + magazines[] = {}; + }; + class BackTurret : BackTurret { + magazines[] = {}; + }; + }; +}; + //Unarmed class Mi17_Civilian; class Mi17_Civilian_DZ: Mi17_Civilian { diff --git a/SQF/dayz_code/stringtable.xml b/SQF/dayz_code/stringtable.xml index 44586e79d..17709feaf 100644 --- a/SQF/dayz_code/stringtable.xml +++ b/SQF/dayz_code/stringtable.xml @@ -9337,6 +9337,26 @@ BRDM-2 HQ++++ + + + BRDM-2 HQ (rusty) + BRDM-2 HQ (rostig) + + + BRDM-2 HQ (rusty)+ + BRDM-2 HQ (rostig)+ + + + BRDM-2 HQ (rusty)++ + BRDM-2 HQ (rostig)++ + + + BRDM-2 HQ (rusty)+++ + BRDM-2 HQ (rostig)+++ + + + BRDM-2 HQ (rusty)++++ + BRDM-2 HQ (rostig)++++ BRDM-2 TK @@ -9387,7 +9407,27 @@ BRDM-2 Desert Camo++++ BRDM-2 Wüstentarn++++ + + + BRDM-2 rusty + BRDM-2 rostig + + BRDM-2 rusty+ + BRDM-2 rostig+ + + + BRDM-2 rusty++ + BRDM-2 rostig++ + + + BRDM-2 rusty+++ + BRDM-2 rostig+++ + + + BRDM-2 rusty++++ + BRDM-2 rostig++++ + M113 UN Ambulance M113 UN Скорая @@ -9563,6 +9603,14 @@ BMP-2 CDF Скорая++++ BMP-2 CDF Sanitätsfzg.++++ + + BMP-2 (rusty) + BMP-2 (rostig) + + + T-72 (rusty) + T-72 (rostig) + MTVR (Woodland) MTVR (Лесной камуфляж) @@ -10597,6 +10645,26 @@ UAZ (Civil)++++ UAZ (Гражданский)++++ UAZ (Zivil)++++ + + + UAZ (rusty) + UAZ (rostig) + + + UAZ (rusty)+ + UAZ (rostig)+ + + + UAZ (rusty)++ + UAZ (rostig)++ + + + UAZ (rusty)+++ + UAZ (rostig)+++ + + + UAZ (rusty)++++ + UAZ (rostig)++++ UAZ (DSHKM) @@ -10612,6 +10680,26 @@ UAZ (DSHKM)++++ + + + UAZ rusty (DSHKM) + UAZ rostig (DSHKM) + + + UAZ rusty (DSHKM)+ + UAZ rostig (DSHKM)+ + + + UAZ rusty (DSHKM)++ + UAZ rostig (DSHKM)++ + + + UAZ rusty (DSHKM)+++ + UAZ rostig (DSHKM)+++ + + + UAZ rusty (DSHKM)++++ + UAZ rostig (DSHKM)++++ Ural (TK) @@ -10643,6 +10731,26 @@ Ural (INS)++++ + + Ural (rusty) + Ural (rostig) + + + Ural (rusty)+ + Ural (rostig)+ + + + Ural (rusty)++ + Ural (rostig)++ + + + Ural (rusty)+++ + Ural (rostig)+++ + + + Ural (rusty)++++ + Ural (rostig)++++ + Ural (CDF) @@ -11703,7 +11811,7 @@ Mi-17 Ми-17 - + Mi-17 (TK) Ми-17 (TK) @@ -11720,6 +11828,10 @@ Mi-17 (UN) Ми-17 (UN) + + Mi-17 (rusty) + Mi-17 (rostig) + Mi-17 (Civilian) Ми-17 (Civilian)