Jump to content

Countermeasures, when in AUTO, which program executes?


Go to solution Solved by _SteelFalcon_,

Recommended Posts

Posted

Hi

Which CMDS program executes when the system mode is "AUTO"?

Currently one flare is dispensed every +- 1 second, I want to change that behaviour. 

 

Thank you

 i7-11800H @ 2.30GH | 16Gb 3200MHz | GeForce RTX 3060 | Samsung 1TB SSD | KINGSTON 520GB SSD

  • Solution
Posted (edited)

You can find the CMDS Programs in the CMDS_ALE47.lua and you tecnically could change it. but it will break IC on servers that require pure scripts

Semi and Auto cannot be changed in the cockpit on the CMDS DED page

Also: none of the SEMI/AUTO programs have Flares in them. 

The Programs for Semi and Auto are the following:

-- Auto presets
-- Threat type 1
programs[ProgramNames.AUTO_1] = {
    chaff = {
        burstQty     = 1,
        burstIntv    = 0.02,
        salvoQty    = 4,
        salvoIntv    = 1.5,
    },
    flare = {
        burstQty    = 0,
        burstIntv    = 0,
        salvoQty    = 0,
        salvoIntv    = 0,
    },
}

-- Threat type 2
programs[ProgramNames.AUTO_2] = {
    chaff = {
        burstQty     = 1,
        burstIntv    = 0.02,
        salvoQty    = 6,
        salvoIntv    = 1,
    },
    flare = {
        burstQty    = 0,
        burstIntv    = 0,
        salvoQty    = 0,
        salvoIntv    = 0,
    },
}

-- Threat type 3
programs[ProgramNames.AUTO_3] = {
    chaff = {
        burstQty     = 1,
        burstIntv    = 0.02,
        salvoQty    = 8,
        salvoIntv    = 0.5,
    },
    flare = {
        burstQty    = 0,
        burstIntv    = 0,
        salvoQty    = 0,
        salvoIntv    = 0,
    },
}

Edited by _SteelFalcon_
Posted

That CMDS_ALE47.lua will be checked for integrity is happening since 2.8. It once was checked before then the check was removed by public request because we dont have a DTC yet. Now the IC for CMDS_ALE47.lua came back in 2.8 but nobody complained this time.

It does not make sense to modify that file at the moment.

Posted
1 hour ago, darkman222 said:

That CMDS_ALE47.lua will be checked for integrity is happening since 2.8. It once was checked before then the check was removed by public request because we dont have a DTC yet. Now the IC for CMDS_ALE47.lua came back in 2.8 but nobody complained this time.

It does not make sense to modify that file at the moment.

Yes it does. Barely any server requires pure scripts. You‘re fine if you modify it.

Posted (edited)
On 11/25/2022 at 2:31 PM, _SteelFalcon_ said:

Yes it does. Barely any server requires pure scripts. You‘re fine if you modify it.

Actually that's not so true, lots of servers use pure scripts. For example, on 10 most populated server there are 5 using IC with tlue client ON. 

Personally I won't touch that file.

Edited by skywalker22
  • Like 1
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...