WoW:API ChannelMute: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 30: Line 30:


----
----
{{Template:WoW API}}
{{WoW API}}
[[Category:API Functions|ChannelMute]]
[[Category:API Channel Functions|ChannelMute]]

Revision as of 04:44, 4 January 2006

ChannelMute -Documentation by AlexanderYoshi-

Turns off the specified player's ability to speak in a channel.

ChannelMute(channelName, playerName);

Arguments
(String channelName, String playerName)
channelName
The name of the channel to mute on
playerName
The name of the player to mute

Returns
nil

Example
ChannelMute("uimods", "alexyoshi");
Result

Description
Mutes player playerName on channel channelName, causing them to not be able to speak on that channel (spectator).

Template:WoW API