enableChannel

From Bohemia Interactive Community
Revision as of 11:38, 24 October 2020 by Killzone Kid (talk | contribs)
Jump to navigation Jump to search
Hover & click on the images for description

Description

Description:
Enables/disables UI functionality which is responsible for sending text or voice chat to the given chat channel. If the channel was disabled in Description.ext, it can be enabled with this command, however the UI functionality changes will be local to the PC executing this command.
Only the Alternative Syntax can affect Custom Radio channels (6-15).
This command:
  • cannot disable Global channel for the admin, because Global channel is always available for the admin
  • does not disable incoming text or voice
  • does not interrupt own client's transmission in progress (but will prevent any further ones)
  • does not affect chat related scripting commands such as vehicleChat, globalRadio etc.

Channel / Number correspondence:

Groups:
Radio and Chat

Syntax

Syntax:
channel enableChannel enable
Parameters:
channel: Number
enable: Boolean - true to enable, false to disable (both VoN and chat)
Return Value:
Nothing

Alternative Syntax

Syntax:
channel enableChannel [chat, VoN] Template:since
Parameters:
channel: Number
[chat, VoN]: Array
chat: Boolean - true to enable text chat
VoN: Boolean - true to enable voice chat
Return Value:
Nothing

Examples

Example 1:
0 enableChannel false; // Disable user ability to send voice and text on global channel
Example 2:
0 enableChannel [true, false]; // Enable user ability to send text but disable voice on global channel

Additional Information

See also:
currentChannelsetCurrentChannelgetPlayerChannelchannelEnabledradioChannelCreate

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