mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
Directory should really be named "scripts", not "examples".
Added script mlock.pl git-svn-id: http://svn.irssi.org/repos/irssi/trunk@149 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
befd35e710
commit
2799d200cb
9 changed files with 115 additions and 1 deletions
17
scripts/privmsg.pl
Normal file
17
scripts/privmsg.pl
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
# listen PRIVMSGs - send a notice to yourself when your nick is meantioned
|
||||
|
||||
use Irssi;
|
||||
|
||||
sub event_privmsg {
|
||||
my ($data, $server, $nick, $address) = @_;
|
||||
my ($target, $text) = $data =~ /^(\S*)\s:(.*)/;
|
||||
|
||||
return if (!Irssi::is_channel($target));
|
||||
|
||||
$mynick = $server->values()->{'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");
|
||||
Loading…
Add table
Add a link
Reference in a new issue