Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
Register
Advertisement

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
Advertisement