Rewritten
mNo edit summary |
(Rewritten) |
||
| Line 1: | Line 1: | ||
{{ | {{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 | |||