Modules/IRCEcho/ircPart: Difference between revisions
Jump to navigation
Jump to search
(New page: __NOTOC__ {{ModuleFunction|IRCEcho}} Lets the IRCConnection leave a channel ==Syntax== <syntaxhighlight lang="lua"> function ircPart ( IRCConnection irc, string channel ) </syntaxhighlight> ===Required arguments==...) |
No edit summary |
||
Line 8: | Line 8: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
===Required arguments=== | ===Required arguments=== | ||
* '''irc:''' The IRCConnection | * '''irc:''' The IRCConnection | ||
* '''channel:''' The channel you want to leave | * '''channel:''' The channel you want to leave | ||
Latest revision as of 18:57, 13 January 2008
This function is provided by the external module IRCEcho. You must install this module to use this function. | |
Lets the IRCConnection leave a channel
Syntax
function ircPart ( IRCConnection irc, string channel )
Required arguments
- irc: The IRCConnection
- channel: The channel you want to leave
Example
Example 1: This command makes the bot leave a channel
function ircLeaveChannel( thePlayer, command, channel ) ircPart( pIRC, channel ) end addCommandHandler( "ircpart", ircLeaveChannel )