Modules/SebasIRC/ircJoin
Jump to navigation
Jump to search
| This function is provided by the external module SebasIRC. You must install this module to use this function. | |
// TODO
Syntax
bool ircJoin(string channel [, string password])
Required arguments
- channel: The channel name.
Optional Arguments
- password: The channel password.
Returns
True if joined, otherwise false.
Example
addEventHandler("onResourceStart", getResourceRootElement(),
function()
local connect = ircConnect("irc.mtasa.com", 6667)
if connect then
ircJoin("#mta")
end
end
)
See also
Connection:
Channel:
- ircJoin
- ircPart
- ircSay
- ircNotice
- ircInvite
- ircSetChannelMode
- ircGetChannelModes
- ircSetChannelTopic
- ircGetChannelTopic