2016-05-30 16:37:03 +00:00
|
|
|
class CfgAmmo {
|
|
|
|
class MissileBase;
|
|
|
|
|
2016-10-08 10:55:30 +00:00
|
|
|
class M_PG_AT: MissileBase {};
|
2016-05-30 16:37:03 +00:00
|
|
|
|
|
|
|
class ACE_Hydra70_DAGR: M_PG_AT {
|
|
|
|
displayName = CSTRING(Hydra70_DAGR);
|
|
|
|
displayNameShort = CSTRING(Hydra70_DAGR_Short);
|
|
|
|
|
|
|
|
description = CSTRING(Hydra70_DAGR_Desc);
|
|
|
|
descriptionShort = CSTRING(Hydra70_DAGR_Desc);
|
|
|
|
|
2016-10-08 10:55:30 +00:00
|
|
|
irLock = 0;
|
|
|
|
laserLock = 0;
|
|
|
|
manualControl = 0;
|
|
|
|
maxSpeed = 300;
|
2017-06-02 21:51:38 +00:00
|
|
|
|
2016-05-30 16:37:03 +00:00
|
|
|
EGVAR(rearm,caliber) = 70;
|
|
|
|
|
|
|
|
class ADDON {
|
|
|
|
enabled = 1;
|
|
|
|
|
2016-10-08 10:55:30 +00:00
|
|
|
minDeflection = 0.0005; // Minium flap deflection for guidance
|
|
|
|
maxDeflection = 0.0025; // Maximum flap deflection for guidance
|
2016-05-30 16:37:03 +00:00
|
|
|
incDeflection = 0.0005; // The incrmeent in which deflection adjusts.
|
|
|
|
|
|
|
|
canVanillaLock = 0; // Can this default vanilla lock? Only applicable to non-cadet mode
|
|
|
|
|
|
|
|
// Guidance type for munitions
|
|
|
|
defaultSeekerType = "SALH";
|
|
|
|
seekerTypes[] = { "SALH", "LIDAR", "SARH", "Optic", "Thermal", "GPS", "SACLOS", "MCLOS" };
|
|
|
|
|
|
|
|
defaultSeekerLockMode = "LOAL";
|
|
|
|
seekerLockModes[] = { "LOAL", "LOBL" };
|
|
|
|
|
|
|
|
seekerAngle = 90; // Angle in front of the missile which can be searched
|
|
|
|
seekerAccuracy = 1; // seeker accuracy multiplier
|
|
|
|
|
|
|
|
seekerMinRange = 1;
|
|
|
|
seekerMaxRange = 2500; // Range from the missile which the seeker can visually search
|
|
|
|
|
|
|
|
// Attack profile type selection
|
|
|
|
defaultAttackProfile = "LIN";
|
|
|
|
attackProfiles[] = { "LIN", "DIR", "MID", "HI" };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
// Titan
|
|
|
|
class M_Titan_AT: MissileBase {};
|
|
|
|
|
|
|
|
class ACE_Javelin_FGM148: M_Titan_AT {
|
2017-02-05 22:01:48 +00:00
|
|
|
irLock = 1;
|
2016-05-30 16:37:03 +00:00
|
|
|
laserLock = 0;
|
|
|
|
airLock = 0;
|
|
|
|
|
|
|
|
// Turn off arma crosshair-guidance
|
|
|
|
manualControl = 0;
|
|
|
|
|
|
|
|
hit = 1400; // default: 800
|
|
|
|
indirectHit = 20;
|
|
|
|
indirectHitRange = 2;
|
|
|
|
// ACE uses these values
|
|
|
|
//trackOversteer = 1;
|
|
|
|
//trackLead = 0;
|
|
|
|
|
2021-03-07 19:25:14 +00:00
|
|
|
initTime = 0.5;
|
2016-05-30 16:37:03 +00:00
|
|
|
|
|
|
|
// Begin ACE guidance Configs
|
|
|
|
class ADDON {
|
|
|
|
enabled = 1;
|
|
|
|
|
|
|
|
minDeflection = 0.00005; // Minium flap deflection for guidance
|
|
|
|
maxDeflection = 0.025; // Maximum flap deflection for guidance
|
|
|
|
incDeflection = 0.00005; // The incrmeent in which deflection adjusts.
|
|
|
|
|
|
|
|
canVanillaLock = 0;
|
|
|
|
|
|
|
|
// Guidance type for munitions
|
|
|
|
defaultSeekerType = "Optic";
|
|
|
|
seekerTypes[] = { "Optic" };
|
|
|
|
|
|
|
|
defaultSeekerLockMode = "LOBL";
|
|
|
|
seekerLockModes[] = { "LOBL" };
|
|
|
|
|
|
|
|
seekerAngle = 180; // Angle in front of the missile which can be searched
|
|
|
|
seekerAccuracy = 1; // seeker accuracy multiplier
|
|
|
|
|
|
|
|
seekerMinRange = 0;
|
|
|
|
seekerMaxRange = 2500; // Range from the missile which the seeker can visually search
|
|
|
|
|
2016-10-12 22:35:24 +00:00
|
|
|
seekLastTargetPos = 1; // seek last target position [if seeker loses LOS of target, continue to last known pos]
|
2017-06-02 21:51:38 +00:00
|
|
|
|
2016-05-30 16:37:03 +00:00
|
|
|
// Attack profile type selection
|
|
|
|
defaultAttackProfile = "JAV_TOP";
|
|
|
|
attackProfiles[] = { "JAV_TOP", "JAV_DIR" };
|
2019-01-31 04:11:01 +00:00
|
|
|
useModeForAttackProfile = 1;
|
2016-05-30 16:37:03 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
class ACE_Javelin_FGM148_static: ACE_Javelin_FGM148 {
|
|
|
|
//Take config changes from (M_Titan_AT_static: M_Titan_AT)
|
|
|
|
initTime = 0.25; //"How long (in seconds) the projectile waits before starting it's engine.", - but doesn't seem to do anything
|
|
|
|
effectsMissileInit = "RocketBackEffectsStaticRPG";
|
|
|
|
|
|
|
|
//Explicity add guidance config
|
|
|
|
class ADDON: ADDON {};
|
|
|
|
};
|
|
|
|
};
|