Using ScenEdit_SetDoctrineWRA() function allows custom salvo size above 8 that is not listed in pulldown menu. For example, set side WRA as follows.
2999 = Surface_Contact_Unknown_Type - Salvo 10rds, range 123nm
3000 = Ship_Unspecified - Salvo 11rds, range 45nm
3001 = Ship_Carrier_0_25000_tons - Salvo 12rds, range 67nm
Code: Select all
ScenEdit_SetDoctrineWRA({
side = "Side1",
weapon_dbid = 109,
target_type= 2999
},
{
10,
"inherit",
123,
"inherit"
})
ScenEdit_SetDoctrineWRA({
side = "Side1",
weapon_dbid = 109,
target_type= 3000
},
{
11,
"inherit",
45,
"inherit"
})
ScenEdit_SetDoctrineWRA({
side = "Side1",
weapon_dbid = 109,
target_type= 3001
},
{
12,
"inherit",
67,
"inherit"
})Mission/unit doctrine shows custom salvo size as inherited value. Only parent (side doctrine here) WRA window does not show intended salvo size above 8, or 3 for AAW weapon.