WoW:API IsVoiceChatAllowed: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
(Rewritten)
Line 1: Line 1:
{{stub/API}}
{{wowapi}}
{{cleanup}}
returns TRUE if Voice Chat is enabled on the server, FALSE if not


[[Category:World of Warcraft API]]
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

Revision as of 22:37, 6 August 2008

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