2000-02-25 12:03:17 -05:00
|
|
|
# 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
|
2000-03-02 13:09:13 -05:00
|
|
|
# if you kick/get kicked all the time "just for fun" ...
|
2000-02-25 12:03:17 -05:00
|
|
|
|
|
|
|
use Irssi;
|
2000-10-18 16:50:12 -04:00
|
|
|
use Irssi::Irc;
|
2001-07-16 16:22:45 -04:00
|
|
|
use strict;
|
2000-02-25 12:03:17 -05:00
|
|
|
|
|
|
|
sub event_rejoin_kick {
|
2000-12-06 00:42:13 -05:00
|
|
|
my ($server, $data) = @_;
|
2000-04-28 07:00:53 -04:00
|
|
|
my ($channel, $nick) = split(/ +/, $data);
|
|
|
|
|
2000-12-06 00:42:13 -05:00
|
|
|
return if ($server->{nick} ne $nick);
|
2000-02-25 12:03:17 -05:00
|
|
|
|
|
|
|
# check if channel has password
|
2001-07-16 16:22:45 -04:00
|
|
|
my $chanrec = $server->channel_find($channel);
|
|
|
|
my $password = $chanrec->{key} if ($chanrec);
|
2000-02-25 12:03:17 -05:00
|
|
|
|
2000-12-06 00:42:13 -05:00
|
|
|
# We have to use send_raw() because the channel record still
|
|
|
|
# exists and irssi won't even try to join to it with command()
|
2000-02-25 12:03:17 -05:00
|
|
|
$server->send_raw("JOIN $channel $password");
|
|
|
|
}
|
|
|
|
|
|
|
|
Irssi::signal_add('event kick', 'event_rejoin_kick');
|