2015-01-13 23:52:37 +00:00
|
|
|
class Mode_FullAuto;
|
|
|
|
|
|
|
|
class CfgWeapons {
|
2015-04-03 23:46:37 +00:00
|
|
|
class RocketPods;
|
2019-08-01 21:46:35 +00:00
|
|
|
class ACE_AIR_SAFETY: RocketPods {
|
2015-04-04 00:28:33 +00:00
|
|
|
CanLock = 0;
|
|
|
|
displayName = "SAFE";
|
|
|
|
displayNameMagazine = "SAFE";
|
|
|
|
shortNameMagazine = "SAFE";
|
|
|
|
nameSound = "cannon";
|
|
|
|
cursor = "EmptyCursor";
|
|
|
|
cursorAim = "EmptyCursor";
|
|
|
|
magazines[] = {"FakeMagazine"};
|
|
|
|
burst = 0;
|
|
|
|
reloadTime = 0.01;
|
|
|
|
magazineReloadTime = 0.1;
|
|
|
|
};
|
2015-07-18 13:51:16 +00:00
|
|
|
|
2015-01-13 23:52:37 +00:00
|
|
|
class CannonCore;
|
2019-08-04 10:36:40 +00:00
|
|
|
// Fix attrocious A-10 Cannon Dispersion; Add high ROF capability
|
2019-08-01 21:46:35 +00:00
|
|
|
class Gatling_30mm_Plane_CAS_01_F: CannonCore {
|
2020-01-03 00:27:31 +00:00
|
|
|
magazines[] += {"ACE_1000Rnd_Gatling_30mm_Plane_CAS_HEI","ACE_1000Rnd_Gatling_30mm_Plane_CAS_AP","ACE_1000Rnd_Gatling_30mm_Plane_CAS_CM41","ACE_1000Rnd_Gatling_30mm_Plane_CAS_CM51"};
|
2019-08-01 21:46:35 +00:00
|
|
|
class LowROF: Mode_FullAuto {
|
2019-08-04 10:52:04 +00:00
|
|
|
multiplier = 3;
|
2019-08-01 08:25:39 +00:00
|
|
|
burst = 1;
|
2019-08-04 10:52:04 +00:00
|
|
|
burstRangeMax = 1;
|
|
|
|
reloadtime = 0.046;
|
|
|
|
dispersion = 0.0046; //0.279508497 = 0.25 * sqrt(0.8^-1); (80%, 5mil. https://en.wikipedia.org/wiki/GAU-8_Avenger#Accuracy) - Luke
|
2019-08-01 23:24:47 +00:00
|
|
|
magazines[] = {"1000Rnd_Gatling_30mm_Plane_CAS_01_F", "ACE_1000Rnd_Gatling_30mm_Plane_CAS_CM"};
|
2019-08-04 10:41:51 +00:00
|
|
|
|
2019-08-01 08:28:33 +00:00
|
|
|
};
|
2019-08-01 08:25:39 +00:00
|
|
|
};
|
|
|
|
// bigger mag for comanche
|
2015-01-13 23:52:37 +00:00
|
|
|
class gatling_20mm: CannonCore {
|
2015-02-14 11:47:33 +00:00
|
|
|
magazines[] += {"ACE_500Rnd_20mm_shells_Comanche"};
|
2015-01-13 23:52:37 +00:00
|
|
|
|
2015-02-14 11:47:33 +00:00
|
|
|
// buff gatling rof
|
2015-01-13 23:52:37 +00:00
|
|
|
class manual: CannonCore {
|
2015-02-14 11:47:33 +00:00
|
|
|
reloadTime = 0.023; //0.04;
|
|
|
|
dispersion = 0.006; //0.0022;
|
2015-01-13 23:52:37 +00:00
|
|
|
};
|
2017-01-23 18:13:37 +00:00
|
|
|
|
2015-01-13 23:52:37 +00:00
|
|
|
class close: manual {};
|
|
|
|
class short: close {};
|
|
|
|
class medium: close {};
|
|
|
|
class far: close {};
|
|
|
|
};
|
|
|
|
|
|
|
|
class ACE_gatling_20mm_Comanche: gatling_20mm {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(gatling_20mm_Name);
|
2015-02-14 11:47:33 +00:00
|
|
|
|
|
|
|
class manual: manual {
|
2015-01-13 23:52:37 +00:00
|
|
|
reloadTime = 0.04;
|
2015-04-06 16:14:56 +00:00
|
|
|
dispersion = 0.006;
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(gatling_20mm_Name);
|
2015-01-13 23:52:37 +00:00
|
|
|
};
|
2017-01-23 18:13:37 +00:00
|
|
|
|
2015-02-14 11:47:33 +00:00
|
|
|
class close: close {
|
2015-01-13 23:52:37 +00:00
|
|
|
reloadTime = 0.04;
|
2015-04-06 16:14:56 +00:00
|
|
|
dispersion = 0.006;
|
2015-01-13 23:52:37 +00:00
|
|
|
};
|
2017-01-23 18:13:37 +00:00
|
|
|
|
2015-02-14 11:47:33 +00:00
|
|
|
class short: short {
|
2015-01-13 23:52:37 +00:00
|
|
|
reloadTime = 0.04;
|
2015-04-06 16:14:56 +00:00
|
|
|
dispersion = 0.006;
|
2015-01-13 23:52:37 +00:00
|
|
|
};
|
2017-01-23 18:13:37 +00:00
|
|
|
|
2015-01-13 23:52:37 +00:00
|
|
|
class medium: medium {
|
|
|
|
reloadTime = 0.04;
|
2015-04-06 16:14:56 +00:00
|
|
|
dispersion = 0.006;
|
2015-01-13 23:52:37 +00:00
|
|
|
};
|
2017-01-23 18:13:37 +00:00
|
|
|
|
2015-02-14 11:47:33 +00:00
|
|
|
class far: far {
|
2015-01-13 23:52:37 +00:00
|
|
|
reloadTime = 0.04;
|
2015-04-06 16:14:56 +00:00
|
|
|
dispersion = 0.006;
|
2015-01-13 23:52:37 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2015-02-14 11:47:33 +00:00
|
|
|
// buff gatling rof
|
|
|
|
class MGunCore;
|
|
|
|
class MGun: MGunCore {};
|
|
|
|
class LMG_RCWS: MGun {};
|
2015-01-13 23:52:37 +00:00
|
|
|
class LMG_Minigun: LMG_RCWS {
|
|
|
|
class manual: MGun {
|
2015-02-14 11:47:33 +00:00
|
|
|
reloadTime = 0.075; //0.015;
|
|
|
|
dispersion = 0.00093; //0.006;
|
2015-01-13 23:52:37 +00:00
|
|
|
};
|
2017-01-23 18:13:37 +00:00
|
|
|
|
2015-01-13 23:52:37 +00:00
|
|
|
class close: manual {};
|
|
|
|
class short: close {};
|
|
|
|
class medium: close {};
|
|
|
|
class far: close {};
|
|
|
|
};
|
2015-02-14 11:47:33 +00:00
|
|
|
|
2015-01-13 23:52:37 +00:00
|
|
|
class LMG_Minigun_heli: LMG_Minigun {
|
|
|
|
showAimCursorInternal = 0;
|
2017-01-23 18:13:37 +00:00
|
|
|
|
2015-01-13 23:52:37 +00:00
|
|
|
class manual: manual {
|
2015-02-14 11:47:33 +00:00
|
|
|
reloadTime = 0.015; //0.033; Note: This is a way to fast ROF (requires over 60 FPS) @todo
|
|
|
|
dispersion = 0.006; //0.0087;
|
2015-01-13 23:52:37 +00:00
|
|
|
};
|
2017-01-23 18:13:37 +00:00
|
|
|
|
2015-01-13 23:52:37 +00:00
|
|
|
class close: manual {};
|
|
|
|
class short: close {};
|
|
|
|
class medium: close {};
|
|
|
|
class far: close {};
|
|
|
|
};
|
2015-02-14 11:47:33 +00:00
|
|
|
|
2015-01-13 23:52:37 +00:00
|
|
|
class M134_minigun: MGunCore {
|
|
|
|
class LowROF: Mode_FullAuto {
|
2015-07-18 13:51:16 +00:00
|
|
|
reloadTime = 0.03; //0.03; same as above @todo
|
|
|
|
dispersion = 0.0064; //0.0023;
|
|
|
|
multiplier = 1;
|
2015-01-13 23:52:37 +00:00
|
|
|
};
|
2017-01-23 18:13:37 +00:00
|
|
|
|
2015-01-13 23:52:37 +00:00
|
|
|
class HighROF: LowROF {
|
2015-07-18 13:51:16 +00:00
|
|
|
reloadTime = 0.02; //0.03;
|
|
|
|
dispersion = 0.0064; //0.0023;
|
|
|
|
multiplier = 1;
|
2015-01-13 23:52:37 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|