Skip to content
Tom Feist edited this page Jan 21, 2011 · 37 revisions

Irssi::Channel

home | Irssi    ATTRIBUTES
   METHODS
   channels_join(channels, automatic)
   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

Get ban mask for $nick.

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 channel.

Clone this wiki locally