channelEnabled: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (parameter name)
(custom channels are supported)
Line 9: Line 9:
__________________________________________________________________________________________
__________________________________________________________________________________________


| 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]].
| Returns [[Array]] of [[Boolean]]s in format [disabledChat, disabledVoN] for the given channel. For more information about enabling/disabling of chat channels see [[enableChannel]].
{{{!}} class{{=}}"wikitable" style{{=}}"text-align: center"
{{{!}} class{{=}}"wikitable" style{{=}}"text-align: center"
! colspan{{=}}"6" {{!}} channel ID number correspondence
! colspan{{=}}"16" {{!}} channel ID number correspondence
{{!}}-
{{!}}-
{{!}} Global
{{!}} Global
Line 19: Line 19:
{{!}} Vehicle
{{!}} Vehicle
{{!}} Direct
{{!}} Direct
{{!}} Custom1
{{!}} Custom2
{{!}} Custom3
{{!}} Custom4
{{!}} Custom5
{{!}} Custom6
{{!}} Custom7
{{!}} Custom8
{{!}} Custom9
{{!}} Custom10
{{!}}-
{{!}}-
{{!}} 0
{{!}} 0
Line 26: Line 36:
{{!}} 4
{{!}} 4
{{!}} 5
{{!}} 5
{{!}}}
{{!}} 6
{{Informative | [[radioChannelCreate|Custom radios]] (6..15) are '''not''' supported.}}
{{!}} 7
{{Important | Before Arma 3 v1.59.135661, the output of this command was [[Boolean]].}} |DESCRIPTION=
{{!}} 8
{{!}} 9
{{!}} 10
{{!}} 11
{{!}} 12
{{!}} 13
{{!}} 14
{{!}} 15
{{!}}} |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[channelEnabled]] channelID |SYNTAX=
| [[channelEnabled]] channelID |SYNTAX=


|p1= channelID: [[Number]] |PARAMETER1=
|p1= channelID: [[Number]] - (see description) |PARAMETER1=


| [[Array]] - in format [isTextChatEnabled, isVoiceEnabled] |RETURNVALUE=
| [[Array]] - in format [disabledChat, disabledVoN] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   

Revision as of 09:25, 29 October 2020

Hover & click on the images for description

Description

Description:
Returns Array of Booleans in format [disabledChat, disabledVoN] for the given channel. For more information about enabling/disabling of chat channels see enableChannel.
channel ID number correspondence
Global Side Command Group Vehicle Direct Custom1 Custom2 Custom3 Custom4 Custom5 Custom6 Custom7 Custom8 Custom9 Custom10
0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Groups:
Radio and Chat

Syntax

Syntax:
channelEnabled channelID
Parameters:
channelID: Number - (see description)
Return Value:
Array - in format [disabledChat, disabledVoN]

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