1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-30 06:45:25 +00:00
irssi/scripts/privmsg.pl
2001-07-16 20:22:45 +00:00

19 lines
468 B
Perl

# 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");