2017-06-02 21:51:38 +00:00
|
|
|
class CfgWeapons {
|
2018-04-14 04:08:56 +00:00
|
|
|
class RocketPods;
|
2019-12-30 18:29:08 +00:00
|
|
|
class MissileLauncher;
|
2018-04-14 04:08:56 +00:00
|
|
|
class GVAR(launcher): RocketPods {
|
2017-06-23 16:32:48 +00:00
|
|
|
displayName = "AGM-114K Hellfire II";
|
2017-09-16 19:24:43 +00:00
|
|
|
GVAR(enabled) = 1; // handle adding interactions and adding Laser Designator
|
2017-06-02 21:51:38 +00:00
|
|
|
EGVAR(laser,canSelect) = 1; // can ace_laser lock (allows switching laser code)
|
2017-09-16 19:24:43 +00:00
|
|
|
EGVAR(laser,showHud) = 1; // show attack profile / lock on hud
|
2018-04-14 04:08:56 +00:00
|
|
|
magazines[] = {"6Rnd_ACE_Hellfire_AGM114K", "PylonMissile_1Rnd_ACE_Hellfire_AGM114K", "PylonRack_1Rnd_ACE_Hellfire_AGM114K", "PylonRack_3Rnd_ACE_Hellfire_AGM114K", "PylonRack_4Rnd_ACE_Hellfire_AGM114K"};
|
2019-05-03 11:07:04 +00:00
|
|
|
magazineWell[] += {QGVAR(K)};
|
2018-04-14 04:08:56 +00:00
|
|
|
autoFire = 0;
|
2017-06-02 21:51:38 +00:00
|
|
|
canLock = 0;
|
|
|
|
weaponLockSystem = 0;
|
|
|
|
lockingTargetSound[] = {"",0,1};
|
|
|
|
lockedTargetSound[] = {"",0,1};
|
2018-04-14 04:08:56 +00:00
|
|
|
soundFly[] = {"A3\Sounds_F\weapons\Rockets\rocket_fly_1",1,1.1,700};
|
|
|
|
nameSound = "MissileLauncher";
|
2019-04-03 16:40:14 +00:00
|
|
|
sounds[] = {"StandardSound"};
|
2018-04-14 04:08:56 +00:00
|
|
|
class StandardSound {
|
|
|
|
begin1[] = {"A3\Sounds_F\weapons\Rockets\missile_1",1.12202,1.3,1000};
|
|
|
|
soundBegin[] = {"begin1",1};
|
|
|
|
soundsetshot[] = {"RocketsMedium_Shot_SoundSet"};
|
|
|
|
};
|
|
|
|
cursor = "EmptyCursor";
|
|
|
|
cursorAim = "missile";
|
|
|
|
showAimCursorInternal = 0;
|
2017-06-02 21:51:38 +00:00
|
|
|
};
|
2017-06-23 16:32:48 +00:00
|
|
|
class GVAR(launcher_N): GVAR(launcher) {
|
|
|
|
displayName = "AGM-114N Hellfire II";
|
|
|
|
magazines[] = {"6Rnd_ACE_Hellfire_AGM114N", "PylonMissile_1Rnd_ACE_Hellfire_AGM114N", "PylonRack_1Rnd_ACE_Hellfire_AGM114N", "PylonRack_3Rnd_ACE_Hellfire_AGM114N", "PylonRack_4Rnd_ACE_Hellfire_AGM114N"};
|
2019-05-03 11:07:04 +00:00
|
|
|
magazineWell[] += {QGVAR(N)};
|
2017-06-23 16:32:48 +00:00
|
|
|
};
|
2019-12-30 18:29:08 +00:00
|
|
|
class GVAR(launcher_L): GVAR(launcher) {
|
|
|
|
displayName = "AGM-114L Hellfire ""Longbow""";
|
|
|
|
magazines[] = {"6Rnd_ACE_Hellfire_AGM114L", "PylonMissile_1Rnd_ACE_Hellfire_AGM114L", "PylonRack_1Rnd_ACE_Hellfire_AGM114L", "PylonRack_3Rnd_ACE_Hellfire_AGM114L", "PylonRack_4Rnd_ACE_Hellfire_AGM114L"};
|
|
|
|
magazineWell[] += {QGVAR(L)};
|
|
|
|
EGVAR(laser,showHud) = 1; // Just to show the attack profile
|
|
|
|
EGVAR(laser,canSelect) = 0;
|
|
|
|
class StandardSound {
|
|
|
|
begin1[] = {"A3\Sounds_F\weapons\Rockets\missile_1",1.12202,1.3,1000};
|
|
|
|
soundBegin[] = {"begin1",1};
|
|
|
|
soundsetshot[] = {"RocketsMedium_Shot_SoundSet"};
|
|
|
|
};
|
|
|
|
cursor = "EmptyCursor";
|
|
|
|
cursorAim = "missile";
|
|
|
|
showAimCursorInternal = 0;
|
|
|
|
|
|
|
|
// vanilla weapon lock systems
|
|
|
|
weaponLockSystem = 8;
|
|
|
|
cmImmunity = 0.9;
|
|
|
|
lockAcquire = 0;
|
|
|
|
weaponLockDelay = 0.1;
|
|
|
|
canLock = 2;
|
|
|
|
};
|
2017-06-02 21:51:38 +00:00
|
|
|
};
|