Skip to content
Tom Feist edited this page Apr 22, 2011 · 37 revisions

Irssi::Channel

home | Irssi
   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

ATTRIBUTES

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)

METHODS

destroy

Destroy the channel object.

bans

Return a list of bans in channel.

ban_get_mask $nick, $ban_type

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

banlist_add $ban, $nick, $time

Add a new ban to channel.

banlist_remove $ban

Remove a ban from channel.

nick_insert $nick, $op, $voice, $send_massjoin

Add nick to nicklist. Returns a Irssi::Nick.

nick_remove $nick

Remove nick from nicklist.

nick_find $nick

Find nick from nicklist. Returns Irssi::Nick

nick_find_mask $mask

Find nick matching $mask from nicklist, wildcards allowed. Returns Irssi::Nick

nicks

Return a list of all nicks in the specified channel.

Clone this wiki locally