channelEnabled: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Bot: Reverted to revision 97346 by Ffur2007slx2 5 on 2016-09-13T04:26:32Z)
m (template:command argument fix)
Line 15: Line 15:
* 5 <nowiki>=</nowiki> Direct
* 5 <nowiki>=</nowiki> Direct
* 6-15 <nowiki>=</nowiki> Custom Radio (Is not supported by [[channelEnabled]])
* 6-15 <nowiki>=</nowiki> Custom Radio (Is not supported by [[channelEnabled]])
{{warning|Please note that since Arma 3 v1.59.135661 the output of this command was changed from <tt>[[Boolean]]</tt> to <tt>[[Array]]</tt> in format <tt><nowiki>[</nowiki>[[Boolean]], [[Boolean]]]</tt>}}|= Description
{{warning|Please note that since Arma 3 v1.59.135661 the output of this command was changed from <tt>[[Boolean]]</tt> to <tt>[[Array]]</tt> in format <tt><nowiki>[</nowiki>[[Boolean]], [[Boolean]]]</tt>}}|DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| '''channelEnabled''' channel|= Syntax
| '''channelEnabled''' channel|SYNTAX=


|p1= channel: [[Number]] |= Parameter 1
|p1= channel: [[Number]] |PARAMETER1=


| [[Array]] - in format [chat, VoN], where
| [[Array]] - in format [chat, VoN], where
* chat: [[Boolean]] - [[true]] if text chat is enabled
* chat: [[Boolean]] - [[true]] if text chat is enabled
* VoN: [[Boolean]] - [[true]] if voice chat is enabled
* VoN: [[Boolean]] - [[true]] if voice chat is enabled
|= Return value
|RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <code>_isGlobalChatEnabled = ([[channelEnabled]] 0) [[select]] 0; // Check if user can use text on global channel</code> |= Example 1
|x1= <code>_isGlobalChatEnabled = ([[channelEnabled]] 0) [[select]] 0; // Check if user can use text on global channel</code> |EXAMPLE1=
|x2= <code>_isGlobalVoiceEnabled = ([[channelEnabled]] 0) [[select]] 1; // Check if user can use the VoN on global channel</code> |= Example 1
|x2= <code>_isGlobalVoiceEnabled = ([[channelEnabled]] 0) [[select]] 1; // Check if user can use the VoN on global channel</code> |EXAMPLE1=
____________________________________________________________________________________________
____________________________________________________________________________________________


|[[currentChannel]], [[setCurrentChannel]], [[getPlayerChannel]], [[enableChannel]], [[radioChannelCreate]]|= See also
|[[currentChannel]], [[setCurrentChannel]], [[getPlayerChannel]], [[enableChannel]], [[radioChannelCreate]]|SEEALSO=


}}
}}

Revision as of 15:35, 7 April 2019

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 / Number correspondence:
  • 0 = Global
  • 1 = Side
  • 2 = Command
  • 3 = Group
  • 4 = Vehicle
  • 5 = Direct
  • 6-15 = Custom Radio (Is not supported by channelEnabled)
Please note that since Arma 3 v1.59.135661 the output of this command was changed from Boolean to Array in format [Boolean, Boolean]
Groups:
Uncategorised

Syntax

Syntax:
channelEnabled channel
Parameters:
channel: Number
Return Value:
Array - in format [chat, VoN], where

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

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