Modules/SebasIRC/ircPart
Jump to navigation
Jump to search
This function is provided by the external module SebasIRC. You must install this module to use this function. | |
This function will part the bot from a channel
Syntax
bool ircPart(string channel)
Required arguments
- channel: The channel name to part.
Returns
True.
Example
local bot = nil addEventHandler("onResourceStart", getResourceRootElement(), function() if ircConnect("irc.mtasa.com", 6667) then bot = true ircJoin("#mta.echo") end end ) addCommandHandler("part", function(thePlayer, command, channel) if channel == nil then return end if bot and ircIsConnected() then ircPart(tostring(channel)) outputChatBox("-IRC- Parted: "..tostring(channel).."!") end end )
See also
Connection:
Channel:
- ircJoin
- ircPart
- ircSay
- ircNotice
- ircInvite
- ircSetChannelMode
- ircGetChannelModes
- ircSetChannelTopic
- ircGetChannelTopic