1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-30 02:45:25 -04:00
irssi/scripts/autorejoin.pl
Timo Sirainen d22ca4efe5 updated
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@976 dbcabf3a-b0e7-0310-adc4-f8d773084564
2000-12-06 05:42:13 +00:00

26 lines
771 B
Perl

# automatically rejoin to channel after kicked
# NOTE: I personally don't like this feature, in most channels I'm in it
# will just result as ban. You've probably misunderstood the idea of /KICK
# if you kick/get kicked all the time "just for fun" ...
use Irssi;
use Irssi::Irc;
sub event_rejoin_kick {
my ($server, $data) = @_;
my ($channel, $nick) = split(/ +/, $data);
return if ($server->{nick} ne $nick);
# check if channel has password
$chanrec = $server->channel_find($channel);
$password = $chanrec->{key} if ($chanrec);
# We have to use send_raw() because the channel record still
# exists and irssi won't even try to join to it with command()
$server->send_raw("JOIN $channel $password");
}
Irssi::signal_add('event kick', 'event_rejoin_kick');