WoW:API IsVoiceChatAllowed: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(New page: returns TRUE if Voice Chat is enabled on the server, FALSE if not)
 
m (Move page script moved page API IsVoiceChatAllowed to API IsVoiceChatAllowed without leaving a redirect)
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
returns TRUE if Voice Chat is enabled on the server, FALSE if not
{{wowapi}}
 
isallowed = IsVoiceChatAllowed();
 
----
;''Arguments''
 
:''none''
 
----
;''Returns''
 
:;isallowed : Boolean - 1 (true) if Voice Chat is enabled on the server, nil (false) otherwise.
 
----
;''Example''
  isallowed = IsVoiceChatAllowed();
  if (isallowed) then
    message("Voice Chat is enabled on the server.");
  end
  else
    message("Voice Chat isn't enabled on the server.");
  end

Latest revision as of 04:46, 15 August 2023

WoW API < IsVoiceChatAllowed

isallowed = IsVoiceChatAllowed();


Arguments
none

Returns
isallowed
Boolean - 1 (true) if Voice Chat is enabled on the server, nil (false) otherwise.

Example
 isallowed = IsVoiceChatAllowed();
 if (isallowed) then
    message("Voice Chat is enabled on the server.");
  end
 else
    message("Voice Chat isn't enabled on the server.");
 end