channelEnabled: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Notes</h3> <dl class="command_description"> <!-- Note Section BEGIN --> <!-- Note Section END --> </dl> " to "")
m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments( \("local" or "global"\))?|Effects|Multiplayer Effects( \("local" or "global"\))?|Multiplayer Exe...)
Line 1: Line 1:
{{Command|Comments=
{{Command


| arma3 |Game name=
| arma3


|1.42|Game version=
|1.42


|gr1= Radio and Chat |GROUP1=
|gr1= Radio and Chat


| Returns [[Array]] of [[Boolean]]s in format [enabledChat, enabledVoN] for the given channel. For more information about enabling/disabling of chat channels see [[enableChannel]].
| Returns [[Array]] of [[Boolean]]s in format [enabledChat, enabledVoN] for the given channel. For more information about enabling/disabling of chat channels see [[enableChannel]].
Line 44: Line 44:
{{!}} 14
{{!}} 14
{{!}} 15
{{!}} 15
{{!}}} |DESCRIPTION=
{{!}}}


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


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


| [[Array]] - in format [enabledChat, enabledVoN] |RETURNVALUE=
| [[Array]] - in format [enabledChat, enabledVoN]
   
   
|x1= <code>_isGlobalChatEnabled = ([[channelEnabled]] 0) [[select]] 0; {{cc|check if user can use text on global channel}}</code> |EXAMPLE1=
|x1= <code>_isGlobalChatEnabled = ([[channelEnabled]] 0) [[select]] 0; {{cc|check if user can use text on global channel}}</code>


|x2= <code>_isGlobalVoiceEnabled = ([[channelEnabled]] 0) [[select]] 1; {{cc|check if user can use the VoN on global channel}}</code> |EXAMPLE2=
|x2= <code>_isGlobalVoiceEnabled = ([[channelEnabled]] 0) [[select]] 1; {{cc|check if user can use the VoN on global channel}}</code>


|x3= <code>([[channelEnabled]] 0) [[params]] ["_isGlobalChatEnabled", "_isGlobalVoiceEnabled"]; {{cc|sets both variables}}</code> |EXAMPLE3=
|x3= <code>([[channelEnabled]] 0) [[params]] ["_isGlobalChatEnabled", "_isGlobalVoiceEnabled"]; {{cc|sets both variables}}</code>


|[[currentChannel]], [[setCurrentChannel]], [[getPlayerChannel]], [[enableChannel]], [[radioChannelCreate]]|SEEALSO=
|[[currentChannel]], [[setCurrentChannel]], [[getPlayerChannel]], [[enableChannel]], [[radioChannelCreate]]
}}
}}



Revision as of 01:09, 18 January 2021

Hover & click on the images for description

Description

Description:
Returns Array of Booleans in format [enabledChat, enabledVoN] 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 - Channel ID (see description)
Return Value:
Array - in format [enabledChat, enabledVoN]

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

Bottom Section