Modules/IRCEcho/ircJoin

From Multi Theft Auto: Wiki
Revision as of 18:56, 13 January 2008 by Mountnl (talk | contribs) (New page: __NOTOC__ {{ModuleFunction|IRCEcho}} Lets the IRCConnection join an channel ==Syntax== <syntaxhighlight lang="lua"> function ircJoin ( IRCConnection irc, string channel ) </syntaxhighlight> ===Required arguments==...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search


Package-x-generic.png This function is provided by the external module IRCEcho. You must install this module to use this function.

Lets the IRCConnection join an channel

Syntax

function ircJoin ( IRCConnection irc, string channel )

Required arguments

  • irc: The IRCConnection you wish to disconnect
  • channel: The channel you want to join

Example

Example 1: This command makes the bot join another channel


function ircJoinChannel( thePlayer, command, channel )
	ircJoinChannel( pIRC, channel )
end

addCommandHandler( "ircjoin", ircJoinChannel )

See also