Modules/SebasIRC/ircPart

From Multi Theft Auto: Wiki
Revision as of 10:03, 30 May 2009 by Sebassje (talk | contribs)
Jump to navigation Jump to search


Package-x-generic.png 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:

Bot: