summaryrefslogtreecommitdiff
path: root/scripts/privmsg.pl
blob: b1d119cb51df336ad3ac47e00811d4dafd12fda8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# listen PRIVMSGs - send a notice to yourself when your nick is meantioned

use Irssi;
use strict;

sub event_privmsg {
	my ($server, $data, $nick, $address) = @_;
	my ($target, $text) = $data =~ /^(\S*)\s:(.*)/;

	return if (!$server->ischannel($target));

	my $mynick = $server->{nick};
	return if ($text !~ /\b$mynick\b/);

	$server->command("/notice $mynick In channel $target, $nick!$address said: $text");
}

Irssi::signal_add("event privmsg", "event_privmsg");