ACE3/addons/vikhr/CfgAmmo.hpp
2021-04-21 00:52:55 -06:00

47 lines
1.5 KiB
C++

class CfgAmmo {
class M_Scalpel_AT;
class GVAR(9k121): M_Scalpel_AT {
author = "Brandon (TCVM)";
maneuvrability = 0;
irLock = 0;
laserLock = 0;
manualControl = 0;
class ace_missileguidance {
enabled = 1;
pitchRate = 10; // Minium flap deflection for guidance
yawRate = 10; // Maximum flap deflection for guidance
canVanillaLock = 1; // Can this default vanilla lock? Only applicable to non-cadet mode
// Guidance type for munitions
defaultSeekerType = "SACLOS";
seekerTypes[] = { "SACLOS" };
defaultSeekerLockMode = "LOBL";
seekerLockModes[] = { "LOBL" };
defaultNavigationType = "Line";
navigationTypes[] = { "Line" };
lineGainP = 3;
lineGainD = 2.4;
correctionDistance = 1;
seekLastTargetPos = 0; // seek last target position [if seeker loses LOS of target, continue to last known pos]
seekerAngle = 45; // Angle from the shooter's view that can track the missile
seekerAccuracy = 1; // seeker accuracy multiplier
seekerMinRange = 30;
seekerMaxRange = 12000; // Range from the missile which the seeker can visually search
// Attack profile type selection
defaultAttackProfile = "BEAM";
attackProfiles[] = {"BEAM"};
};
};
};