mirror of
https://github.com/irssi/irssi.git
synced 2026-08-19 16:42:30 +02:00
Irssi 0.7.27 released.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@130 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
3d513eebfa
commit
f5fc624781
15 changed files with 135 additions and 29 deletions
23
examples/autorejoin.pl
Normal file
23
examples/autorejoin.pl
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
# 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
|
||||
# wrong if you kick/get kicked all the time "just for fun" ...
|
||||
|
||||
use Irssi;
|
||||
|
||||
sub event_rejoin_kick {
|
||||
my ($data, $server) = @_;
|
||||
my ($channel) = split(/ +/, $data);
|
||||
|
||||
# check if channel has password
|
||||
$chanrec = $server->channel_find($channel);
|
||||
if ($chanrec) {
|
||||
%cvals = %{$chanrec->values()};
|
||||
$password = $cvals{'key'};
|
||||
}
|
||||
|
||||
$server->send_raw("JOIN $channel $password");
|
||||
}
|
||||
|
||||
Irssi::signal_add('event kick', 'event_rejoin_kick');
|
||||
Loading…
Add table
Add a link
Reference in a new issue