ACE3/addons/maverick/CfgAmmo.hpp

76 lines
1.8 KiB
C++
Raw Normal View History

class CfgAmmo {
class MissileCore;
class MissileBase: MissileCore {
class Components;
};
class Missile_AGM_02_F: MissileBase {};
class GVAR(L): Missile_AGM_02_F {
2018-01-01 00:01:09 +00:00
author = "xrufix";
autoSeekTarget = 0;
irLock = 0;
laserLock = 0;
manualControl = 0;
missileLockMaxDistance = 16000;
weaponLockSystem = 4;
class ace_missileguidance {
enabled = 1;
minDeflection = 0;
maxDeflection = 0.002;
incDeflection = 0.001;
canVanillaLock = 0;
defaultSeekerType = "SALH";
seekerTypes[] = {"SALH"};
defaultSeekerLockMode = "LOAL";
seekerLockModes[] = {"LOAL","LOBL"};
seekLastTargetPos = 1;
seekerAngle = 60;
seekerAccuracy = 1;
seekerMinRange = 1;
seekerMaxRange = 16000;
defaultAttackProfile = "maverick";
attackProfiles[] = {"maverick"};
};
};
2018-01-01 00:01:09 +00:00
class Missile_AGM_01_F: Missile_AGM_02_F {};
class ace_kh25ml: Missile_AGM_01_F {
2018-01-01 00:01:09 +00:00
author = "xrufix";
irLock = 0;
2018-01-01 00:01:09 +00:00
missileLockMaxDistance = 10000;
weaponLockSystem = 4;
class ace_missileguidance {
enabled = 1;
minDeflection = 0;
maxDeflection = 0.002;
incDeflection = 0.001;
2018-01-01 00:01:09 +00:00
canVanillaLock = 0;
defaultSeekerType = "SALH";
seekerTypes[] = {"SALH"};
defaultSeekerLockMode = "LOAL";
seekerLockModes[] = {"LOAL"};
seekLastTargetPos = 1;
seekerAngle = 40;
seekerAccuracy = 1;
seekerMinRange = 1;
seekerMaxRange = 10000;
defaultAttackProfile = "maverick";
attackProfiles[] = {"maverick"};
};
};
};