ACE3/addons/common/functions/fnc_currentChannel.sqf

18 lines
653 B
Plaintext
Raw Normal View History

/*
* Author: commy2
*
* Returns the current radio / chat / marker channel.
*
* Argument:
* NONE.
*
* Return value:
* The current channel. Can be "group", "side", "global", "command", "vehicle" or "direct" (String)
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
#define CHANNELS ["group", "side", "global", "command", "vehicle", "direct"]
#define CHANNELS_LOCALIZED [localize "str_channel_group", localize "str_channel_side", localize "str_channel_global", localize "str_channel_command", localize "str_channel_vehicle", localize "str_channel_direct"]
CHANNELS select (CHANNELS_LOCALIZED find (uiNamespace getVariable [QGVAR(currentChannel), ""])) max 0