WoW:API JoinChannelByName: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
(correct return values)
No edit summary
Line 26: Line 26:
----
----
__NOTOC__
__NOTOC__
{{Template:WoW API}}
 
[[Category:API Functions|JoinChannelByName]]
----
[[Category:API Channel Functions|JoinChannelByName]]
{{WoW API}}
[[Category:API Chat Functions|JoinChannelByName]]

Revision as of 04:47, 4 January 2006

JoinChannelByName - Documentation by AlexanderYoshi

Joins the channel with the specified name.

type, name = JoinChannelByName("channelName" [,"password" [,frameID]])

Parameters

Arguments

("channelName" [,"password" [,frameID]])
channelName
String - The name of the channel to join
password
String (optional) - The channel password, nil if none.
frameID
Number (optional) - The chat frame ID number to add the channel to. Use Frame:GetID() to retrieve it for chat frame objects.

Returns

type
Number - The type of channel. 0 for a undefined channel, 1 for the zone General channel, etc
name
String - The name of the channel.

Example

JoinChannelByName("Mammoth", "thesane", ChatFrame1:GetID());

Details

Joins the channel with the specified name if there are less than 10 live channels.



Template:WoW API