2015-04-09 02:51:21 +00:00
|
|
|
enum {
|
|
|
|
ACE_LOBL = 1,
|
|
|
|
ACE_LOAL = 2
|
|
|
|
};
|
|
|
|
|
2015-01-11 18:24:19 +00:00
|
|
|
class CfgAmmo {
|
2015-04-02 16:35:36 +00:00
|
|
|
class MissileBase;
|
2015-04-10 19:40:58 +00:00
|
|
|
|
2015-09-15 03:11:12 +00:00
|
|
|
class M_PG_AT: MissileBase {
|
2015-04-07 19:35:34 +00:00
|
|
|
model = "\A3\Weapons_F\Ammo\Rocket_01_fly_F";
|
2015-04-17 14:28:19 +00:00
|
|
|
proxyShape = "\A3\Weapons_F\Ammo\Rocket_01_F";
|
2015-04-10 18:37:03 +00:00
|
|
|
|
2015-04-02 16:35:36 +00:00
|
|
|
irLock = 0;
|
2015-04-17 14:28:19 +00:00
|
|
|
laserLock = 0;
|
|
|
|
airLock = 0;
|
|
|
|
weaponLockSystem = "2 + 16";
|
2015-04-07 19:35:34 +00:00
|
|
|
|
2015-04-17 14:28:19 +00:00
|
|
|
maxSpeed = 720;
|
|
|
|
maxControlRange = 5000;
|
|
|
|
maneuvrability = 8;
|
|
|
|
timeToLive = 60;
|
|
|
|
simulationStep = 0.01;
|
|
|
|
airFriction = 0.1;
|
|
|
|
sideAirFriction = 0.16;
|
|
|
|
initTime = 0.002;
|
|
|
|
thrustTime = 1.07;
|
|
|
|
thrust = 530;
|
|
|
|
fuseDistance = 2;
|
2015-08-18 01:18:38 +00:00
|
|
|
|
2015-04-17 14:28:19 +00:00
|
|
|
effectsMissileInit = "MissileDAR1";
|
|
|
|
effectsMissile = "missile2";
|
|
|
|
whistleDist = 4;
|
|
|
|
muzzleEffect = "";
|
2015-04-07 19:35:34 +00:00
|
|
|
|
2015-04-08 15:01:39 +00:00
|
|
|
// Turn off arma crosshair-guidance
|
|
|
|
manualControl = 0;
|
2015-08-18 01:18:38 +00:00
|
|
|
|
2015-04-08 15:01:39 +00:00
|
|
|
// ACE uses these values
|
|
|
|
trackOversteer = 1;
|
|
|
|
trackLead = 0;
|
2015-08-18 01:18:38 +00:00
|
|
|
|
2015-04-08 15:01:39 +00:00
|
|
|
// Begin ACE guidance Configs
|
2015-04-14 15:24:13 +00:00
|
|
|
class ADDON {
|
2015-04-08 15:01:39 +00:00
|
|
|
enabled = 1;
|
2015-08-18 01:18:38 +00:00
|
|
|
|
2015-04-14 16:36:39 +00:00
|
|
|
minDeflection = 0.00025; // Minium flap deflection for guidance
|
2015-04-14 17:39:00 +00:00
|
|
|
maxDeflection = 0.001; // Maximum flap deflection for guidance
|
2015-04-14 15:24:13 +00:00
|
|
|
incDeflection = 0.0005; // The incrmeent in which deflection adjusts.
|
2015-08-18 01:18:38 +00:00
|
|
|
|
2015-04-15 16:55:40 +00:00
|
|
|
canVanillaLock = 0; // Can this default vanilla lock? Only applicable to non-cadet mode
|
2015-08-18 01:18:38 +00:00
|
|
|
|
2015-04-08 15:01:39 +00:00
|
|
|
// Guidance type for munitions
|
|
|
|
defaultSeekerType = "SALH";
|
2015-08-18 01:18:38 +00:00
|
|
|
seekerTypes[] = { "SALH", "LIDAR", "SARH", "Optic", "Thermal", "GPS", "SACLOS", "MCLOS" };
|
|
|
|
|
2015-04-09 02:51:21 +00:00
|
|
|
defaultSeekerLockMode = "LOAL";
|
2015-08-18 01:18:38 +00:00
|
|
|
seekerLockModes[] = { "LOAL", "LOBL" };
|
|
|
|
|
2015-04-08 15:01:39 +00:00
|
|
|
seekerAngle = 90; // Angle in front of the missile which can be searched
|
|
|
|
seekerAccuracy = 1; // seeker accuracy multiplier
|
2015-08-18 01:18:38 +00:00
|
|
|
|
2015-04-09 16:39:23 +00:00
|
|
|
seekerMinRange = 1;
|
2015-04-08 15:01:39 +00:00
|
|
|
seekerMaxRange = 2500; // Range from the missile which the seeker can visually search
|
2015-08-18 01:18:38 +00:00
|
|
|
|
2015-04-08 15:01:39 +00:00
|
|
|
// Attack profile type selection
|
2015-04-09 20:03:28 +00:00
|
|
|
defaultAttackProfile = "LIN";
|
2015-04-14 17:39:00 +00:00
|
|
|
attackProfiles[] = { "LIN", "DIR", "MID", "HI" };
|
2015-04-08 15:01:39 +00:00
|
|
|
};
|
2015-04-02 16:35:36 +00:00
|
|
|
};
|
2015-04-07 06:15:26 +00:00
|
|
|
|
2015-09-15 03:11:12 +00:00
|
|
|
class ACE_Hydra70_DAGR: M_PG_AT {
|
2015-05-27 19:43:30 +00:00
|
|
|
displayName = CSTRING(Hydra70_DAGR);
|
|
|
|
displayNameShort = CSTRING(Hydra70_DAGR_Short);
|
2015-08-18 01:18:38 +00:00
|
|
|
|
2015-05-27 19:43:30 +00:00
|
|
|
description = CSTRING(Hydra70_DAGR_Desc);
|
|
|
|
descriptionShort = CSTRING(Hydra70_DAGR_Desc);
|
2015-09-15 03:11:12 +00:00
|
|
|
|
2015-10-18 11:21:20 +00:00
|
|
|
EGVAR(rearm,caliber) = 70;
|
|
|
|
|
2015-09-15 03:11:12 +00:00
|
|
|
//Explicity add guidance config
|
|
|
|
class ADDON: ADDON {};
|
2015-04-07 06:15:26 +00:00
|
|
|
};
|
|
|
|
|
2015-09-15 03:11:12 +00:00
|
|
|
class ACE_Hellfire_AGM114K: ACE_Hydra70_DAGR {
|
2015-05-27 19:43:30 +00:00
|
|
|
displayName = CSTRING(Hellfire_AGM114K);
|
|
|
|
displayNameShort = CSTRING(Hellfire_AGM114K_Short);
|
2015-08-18 01:18:38 +00:00
|
|
|
|
2015-05-27 19:43:30 +00:00
|
|
|
description = CSTRING(Hellfire_AGM114K_desc);
|
|
|
|
descriptionShort = CSTRING(Hellfire_AGM114K_desc);
|
2015-08-18 01:18:38 +00:00
|
|
|
|
2015-04-10 17:42:02 +00:00
|
|
|
// @TODO: placeholder model to at least make it look different
|
|
|
|
model = "\A3\Weapons_F\Ammo\Missile_AT_03_fly_F";
|
|
|
|
proxyShape = "\A3\Weapons_F\Ammo\Missile_AT_03_F";
|
2015-08-18 01:18:38 +00:00
|
|
|
|
2015-04-07 15:53:47 +00:00
|
|
|
hit = 1400;
|
|
|
|
indirectHit = 71;
|
2015-04-17 14:28:19 +00:00
|
|
|
indirectHitRange = 4.5;
|
|
|
|
effectsMissile = "missile2";
|
2015-09-15 03:11:12 +00:00
|
|
|
|
|
|
|
//Explicity add guidance config
|
|
|
|
class ADDON: ADDON {};
|
2015-04-07 06:15:26 +00:00
|
|
|
};
|
2015-08-18 01:18:38 +00:00
|
|
|
|
2015-04-09 02:51:21 +00:00
|
|
|
// Titan
|
2015-09-15 03:11:12 +00:00
|
|
|
class M_Titan_AT: MissileBase {};
|
2015-05-25 10:34:07 +00:00
|
|
|
|
|
|
|
class ACE_Javelin_FGM148: M_Titan_AT {
|
2015-04-09 02:51:21 +00:00
|
|
|
irLock = 0;
|
2015-04-17 14:28:19 +00:00
|
|
|
laserLock = 0;
|
|
|
|
airLock = 0;
|
2015-04-09 02:51:21 +00:00
|
|
|
|
|
|
|
// Turn off arma crosshair-guidance
|
|
|
|
manualControl = 0;
|
2015-05-25 10:34:07 +00:00
|
|
|
|
2015-04-16 18:32:47 +00:00
|
|
|
hit = 1400; // default: 800
|
2015-04-17 14:28:19 +00:00
|
|
|
indirectHit = 20;
|
|
|
|
indirectHitRange = 2;
|
2015-04-09 02:51:21 +00:00
|
|
|
// ACE uses these values
|
2015-04-09 21:11:15 +00:00
|
|
|
//trackOversteer = 1;
|
|
|
|
//trackLead = 0;
|
2015-05-25 10:34:07 +00:00
|
|
|
|
|
|
|
initTime = 2;
|
|
|
|
|
2015-04-09 02:51:21 +00:00
|
|
|
// Begin ACE guidance Configs
|
2015-04-14 15:24:13 +00:00
|
|
|
class ADDON {
|
2015-04-09 02:51:21 +00:00
|
|
|
enabled = 1;
|
2015-05-25 10:34:07 +00:00
|
|
|
|
2015-04-14 16:36:39 +00:00
|
|
|
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.
|
2015-05-25 10:34:07 +00:00
|
|
|
|
2015-04-15 16:55:40 +00:00
|
|
|
canVanillaLock = 0;
|
2015-05-25 10:34:07 +00:00
|
|
|
|
2015-04-09 02:51:21 +00:00
|
|
|
// Guidance type for munitions
|
|
|
|
defaultSeekerType = "Optic";
|
2015-05-25 10:34:07 +00:00
|
|
|
seekerTypes[] = { "Optic" };
|
|
|
|
|
2015-04-09 02:51:21 +00:00
|
|
|
defaultSeekerLockMode = "LOBL";
|
|
|
|
seekerLockModes[] = { "LOBL" };
|
2015-05-25 10:34:07 +00:00
|
|
|
|
2015-04-13 15:59:36 +00:00
|
|
|
seekerAngle = 180; // Angle in front of the missile which can be searched
|
2015-04-09 02:51:21 +00:00
|
|
|
seekerAccuracy = 1; // seeker accuracy multiplier
|
2015-05-25 10:34:07 +00:00
|
|
|
|
2015-04-13 15:59:36 +00:00
|
|
|
seekerMinRange = 0;
|
2015-04-09 02:51:21 +00:00
|
|
|
seekerMaxRange = 2500; // Range from the missile which the seeker can visually search
|
2015-05-25 10:34:07 +00:00
|
|
|
|
2015-04-09 02:51:21 +00:00
|
|
|
// Attack profile type selection
|
2015-04-14 17:25:08 +00:00
|
|
|
defaultAttackProfile = "JAV_TOP";
|
|
|
|
attackProfiles[] = { "JAV_TOP", "JAV_DIR" };
|
2015-04-09 02:51:21 +00:00
|
|
|
};
|
|
|
|
};
|
2015-05-25 10:34:07 +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";
|
2015-09-15 03:11:12 +00:00
|
|
|
|
|
|
|
//Explicity add guidance config
|
|
|
|
class ADDON: ADDON {};
|
2015-05-25 10:34:07 +00:00
|
|
|
};
|
|
|
|
};
|