-
Notifications
You must be signed in to change notification settings - Fork 6
Channel
ATTRIBUTES
METHODS
destroy
bans
ban_get_mask $nick
banlist_add $ban, $nick, $time
banlist_remove $ban
nick_insert $nick, $op, $voice, $send_massjoin
nick_remove $nick
nick_find $nick
nick_find_mask $mask
nicks
Channel->{}
type - "CHANNEL" text
chat_type - String ID of chat protocol, for example "IRC"
(..contains all the same data as [[Windowitem]] above..)
topic - Channel topic
topic_by - Nick who set the topic
topic_time - Timestamp when the topic was set
no_modes - Channel is modeless
mode - Channel mode
limit - Max. users in channel (+l mode)
key - Channel key (password)
chanop - You are channel operator
names_got - /NAMES list has been received
wholist - /WHO list has been received
synced - Channel is fully synchronized
joined - JOIN event for this channel has been received
left - You just left the channel (for "channel destroyed" event)
kicked - You was just kicked out of the channel (for
"channel destroyed" event)
Destroy the channel object.
Return a list of bans in channel.
Get ban mask for $nick
.
$ban_type
is an integer bitmask, taking one of the following values:
-
Irssi::Irc::MASK_NICK 0x01
-
Irssi::Irc::MASK_USER 0x02
-
Irssi::Irc::MASK_HOST 0x04
-
Irssi::Irc::MASK_DOMAIN 0x08
Add a new ban to channel.
Remove a ban from channel.
Add nick to nicklist. Returns a Irssi::Nick.
Remove nick from nicklist.
Find nick from nicklist. Returns Irssi::Nick
Find nick matching $mask
from nicklist, wildcards allowed. Returns Irssi::Nick
Return a list of all nicks in the specified channel.
Much of the content on these pages is taken from original Irssi documentation and is Copyright © 2000-2010 The Irssi project. Formatting and additional documentation, examples, etc by Tom Feist and the other editors of this wiki. This work is licensed under a Creative Commons Attribution-ShareAlike 2.5 License. Please see http://creativecommons.org/licenses/by-sa/2.5/ for details.