blob: 527536a299370260a717565ea95a8e6707352a93 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
use Irssi 20020217; # Irssi 0.8.0
$VERSION = "1.1";
%IRSSI = (
authors => "Matti 'qvr' Hiljanen",
contact => "matti\@hiljanen.com",
name => "wkb",
description => "A simple word kickbanner",
license => "Public Domain",
url => "http://matin.maapallo.org/softa/irssi",
);
use strict;
use Irssi;
my @channels =
qw(#foo #foo2);
my @words =
qw(bad_word bad_word2);
my @gods =
qw(qvr other_gods);
sub sig_public {
my ($server, $msg, $nick, $address, $target) = @_;
return if $nick eq $server->{nick};
$msg =~ s/[\000-\037]//g;
my $rmsg = $msg;
$msg = lc($msg);
# bad word
my $nono = 0;
foreach (@words) { $nono = 1 if $msg =~ /$_/ }
return unless $nono;
# channel?
my $react = 0;
foreach (@channels) { $react = 1 if lc($target) eq lc($_) }
return unless $react;
# god-like person?
my $jumala = 0;
foreach (@gods) { $jumala = 1 if lc($nick) =~ /$_/ }
return if $jumala;
# voiced or op'd?
return if $server->channel_find($target)->nick_find($nick)->{op} || $server->channel_find($target)->nick_find($nick)->{voice};
$server->command("kickban $target $nick WKB initiated");
Irssi::print("Word kick: Kicking $nick from $target. (He said $rmsg)");
}
Irssi::signal_add_last('message public', 'sig_public');
|