mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
a4e0e83972
* LSV AT variants * Angara > Armata, Nyx > Wiesel 2 * Fix some errors in last to commits * Zamak MRL -> KamAZ MRL * Vorona -> Metis-M * Vehicle Vorona -> Metis-M * Wiesel vehicle weapons * Fix wrong inheritance * Rooikat GT12 cannon * Armata weaponry * MB 4WD -> Jeep Wrangler * Optics Attachments * Fixed Type "Grenn" -> "Green" * Rooikat SPMG -> MG4 * New Marid v2 -> Otokar ARMA * Removed unnecessary inheritance. * Simplify ace_vehicles config
44 lines
2.1 KiB
C++
44 lines
2.1 KiB
C++
|
|
class CfgWeapons {
|
|
class MGunCore;
|
|
class MGun: MGunCore {};
|
|
class LMG_RCWS: MGun {};
|
|
class LMG_coax: LMG_RCWS {};
|
|
class LMG_coax_ext: LMG_coax {};
|
|
|
|
class ACE_LMG_coax_L94A1_mem3: LMG_coax {};
|
|
class ACE_LMG_coax_MAG58_mem3: LMG_coax {};
|
|
class ACE_LMG_coax_ext_MAG58: LMG_coax_ext {};
|
|
class ACE_LMG_coax_ext_MG3: LMG_coax_ext {};
|
|
class ACE_LMG_coax_DenelMG4 : LMG_coax {};
|
|
|
|
class LMG_Minigun: LMG_RCWS {
|
|
// Add the following: "2000Rnd_762x51_Belt_T_Green","2000Rnd_762x51_Belt_T_Red","2000Rnd_762x51_Belt_T_Yellow","5000Rnd_762x51_Belt","5000Rnd_762x51_Yellow_Belt"
|
|
magazines[] = {"PylonWeapon_2000Rnd_65x39_belt", "1000Rnd_65x39_Belt","1000Rnd_65x39_Belt_Green","1000Rnd_65x39_Belt_Tracer_Green","1000Rnd_65x39_Belt_Tracer_Red","1000Rnd_65x39_Belt_Tracer_Yellow","1000Rnd_65x39_Belt_Yellow","2000Rnd_65x39_Belt","2000Rnd_65x39_Belt_Green","2000Rnd_65x39_Belt_Tracer_Green","2000Rnd_65x39_Belt_Tracer_Green_Splash","2000Rnd_65x39_Belt_Tracer_Red","2000Rnd_65x39_Belt_Tracer_Yellow","2000Rnd_65x39_Belt_Tracer_Yellow_Splash","2000Rnd_65x39_Belt_Yellow","2000Rnd_762x51_Belt_T_Green","2000Rnd_762x51_Belt_T_Red","2000Rnd_762x51_Belt_T_Yellow","200Rnd_65x39_Belt","200Rnd_65x39_Belt_Tracer_Green","200Rnd_65x39_Belt_Tracer_Red","200Rnd_65x39_Belt_Tracer_Yellow","5000Rnd_762x51_Belt","5000Rnd_762x51_Yellow_Belt","500Rnd_65x39_Belt","500Rnd_65x39_Belt_Tracer_Red_Splash","500Rnd_65x39_Belt_Tracer_Green_Splash","500Rnd_65x39_Belt_Tracer_Yellow_Splash"};
|
|
};
|
|
|
|
class HMG_127: LMG_RCWS {
|
|
class manual: MGun {};
|
|
};
|
|
|
|
class HMG_01: HMG_127 {
|
|
reloadTime = 0.23;
|
|
class manual: manual {
|
|
reloadTime = 0.23;
|
|
};
|
|
};
|
|
|
|
class HMG_127_APC : HMG_127 {};
|
|
class ACE_HMG_127_KORD : HMG_127_APC {};
|
|
|
|
// Tanks DLC: weapons for Wiesel and Rooikat
|
|
class CannonCore;
|
|
class autocannon_Base_F : CannonCore {};
|
|
class cannon_20mm : autocannon_Base_F {};
|
|
class ACE_cannon_20mm_Rh202 : cannon_20mm {};
|
|
|
|
class cannon_120mm : CannonCore {};
|
|
class ACE_cannon_120mm_GT12 : cannon_120mm {};
|
|
|
|
};
|