Radiochannels to briefing - ARMAFinland/Arma3-Basic-Afi-Mission-framework GitHub Wiki

Radiochannels to briefing

This is automatic system for creating command and signal tab for briefing. This can be disabled from CBA addon settings.
Defaulty you dont need to change anythig, but there is settings at addon options -> "Tun Utilities - Radio channels". Every option should have tooltip.
Most important setting there is ability to create custom long range channels.

What channels get created

It will create short range channels for every squad, which has playable slots in it. It will use the groupID for the names.

Long range nets gets generated using the command element ID, which is set at addon options.
Like if group name is Alpha 10 and ID is set as 10, there will be long range net named ALPHA etc.

Disable radiochannel for squad

To disable creation of radiochannels based on squad.
You can set following variable to true on group: tunuti_radiochannels_skipSquad

Exaplmes Put this to groups init field

this setVariable ["tunuti_radiochannels_skipSquad", true];

or put this to one of the units init field

(group this) setVariable ["tunuti_radiochannels_skipSquad", true];

Also there is toggle button for this at units atributes. You need to toggle it from group leader to have affect. (If this is not precent, mod is not yet updated to include it)

20231213181107_1