summaryrefslogtreecommitdiff
path: root/scripts/autorejoin.pl
blob: bbbb0ed8640a1e71fe195c06707a68feee2d289b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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;
use strict;

sub event_rejoin_kick {
	my ($server, $data) = @_;
	my ($channel, $nick) = split(/ +/, $data);

	return if ($server->{nick} ne $nick);

	# check if channel has password
	my $chanrec = $server->channel_find($channel);
	my $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');