This is the defacto mass highlight I use to annoy the fuck out of people when on IRC with irssi. It’s good stuff. Modify it to say something incredibly offensive and use it yourself.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
use strict;
use Irssi;

sub cmd_hilight {
        my ($data, $server, $win) = @_;
        my $channel = Irssi::active_win()->get_active_name();
        my $foo = "\cBHey,\cB ";
        foreach ($win->nicks())
        {      
                next if ($_->{'nick'} eq $server->{nick});
                $foo .= "\cB\c_$_->{'nick'}\cB\c_ ";
        }
        $server->command("MSG $channel $foo");
}

Irssi::command_bind('mh', 'cmd_hilight');