channelEnabled: Difference between revisions
Jump to navigation
Jump to search
Killzone Kid (talk | contribs) (changed of syntax) |
Lou Montana (talk | contribs) m (Text replacement - "\|x([0-9])= *<code>([^<]*)<\/code>" to "|x$1= <sqf>$2</sqf>") |
||
(44 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
{{ | {{RV|type=command | ||
| arma3 |= | |game1= arma3 | ||
|version1= 1.42 | |||
| | |gr1= Radio and Chat | ||
| Returns [[ | |descr= Returns [[Array]] of [[Boolean]]s in format [enabledChat, enabledVoN] for the given channel. For more information about enabling/disabling of chat channels see [[enableChannel]]. | ||
{{{!}} class{{=}}"wikitable" style{{=}}"text-align: center" | |||
! colspan{{=}}"16" {{!}} [[Channel IDs|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 | |||
{{!}}} | |||
| | |s1= [[channelEnabled]] channelID | ||
|p1= | |p1= channelID: [[Number]] - [[Channel IDs|Channel ID]] (see description) | ||
| [[Array]] - in format [ | |r1= [[Array]] - in format [enabledChat, enabledVoN] | ||
| | |x1= <sqf>_isGlobalChatEnabled = (channelEnabled 0) select 0; // check if user can use text on global channel</sqf> | ||
|x2= <sqf>_isGlobalVoiceEnabled = (channelEnabled 0) select 1; // check if user can use the VoN on global channel</sqf> | |||
< | |x3= <sqf>(channelEnabled 0) params ["_isGlobalChatEnabled", "_isGlobalVoiceEnabled"]; // sets both variables</sqf> | ||
< | |||
|seealso= [[currentChannel]] [[setCurrentChannel]] [[getPlayerChannel]] [[enableChannel]] [[radioChannelCreate]] | |||
}} | |||
[[ | |||
[[ |
Latest revision as of 10:21, 13 May 2022
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:
- Example 2:
- Example 3:
Additional Information
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