channelEnabled: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "Command_Group:_Radio_Control" to "Command Group: Radio and Chat")
mNo edit summary
Line 5: Line 5:


|1.42|Game version=
|1.42|Game version=
|gr1= Radio and Chat |GROUP1=
__________________________________________________________________________________________
__________________________________________________________________________________________



Revision as of 15:40, 21 September 2020

Hover & click on the images for description

Description

Description:
Returns true or false depending on whether the given channel is enabled or disabled. For more information about enabling/disabling of chat channels see enableChannel.
channel ID number correspondence
Global Side Command Group Vehicle Direct
0 1 2 3 4 5
Custom radios (6..15) are not supported.
Before Arma 3 v1.59.135661, the output of this command was Boolean.
Groups:
Radio and Chat

Syntax

Syntax:
channelEnabled channel
Parameters:
channel: Number
Return Value:
Array - in format [isTextChatEnabled, isVoiceEnabled]

Examples

Example 1:
_isGlobalChatEnabled = (channelEnabled 0) select 0; // check if user can use text on global channel
Example 2:
_isGlobalVoiceEnabled = (channelEnabled 0) select 1; // check if user can use the VoN on global channel
Example 3:
(channelEnabled 0) params ["_isGlobalChatEnabled", "_isGlobalVoiceEnabled"]; // sets both variables

Additional Information

See also:
currentChannelsetCurrentChannelgetPlayerChannelenableChannelradioChannelCreate

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section