mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
30 lines
880 B
Plaintext
30 lines
880 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Returns the current radio / chat / marker channel.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* The current channel ("group", "side", "global", "command", "vehicle", "direct", "custom_X") <STRING>
|
|
*
|
|
* Example:
|
|
* [] call ace_common_fnc_currentChannel
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
#define CHANNELS ["global", "side", "command", "group", "vehicle", "direct"]
|
|
#define CHANNELS_LOCALIZED [localize "str_channel_global", localize "str_channel_side", localize "str_channel_command", localize "str_channel_group", localize "str_channel_vehicle", localize "str_channel_direct"]
|
|
|
|
private _currentChannel = currentChannel;
|
|
|
|
if (_currentChannel < count CHANNELS) then {
|
|
_currentChannel = CHANNELS select _currentChannel;
|
|
} else {
|
|
_currentChannel = format ["custom_%1", _currentChannel - count CHANNELS - 1];
|
|
};
|
|
|
|
_currentChannel
|