irssi/scripts/hello.pl

12 lines
245 B
Perl
Raw Normal View History

# "Hello, world!" script :) /hello <nick> sends "Hello, world!" to <nick>
use Irssi;
sub cmd_hello {
my ($data, $server, $channel) = @_;
$server->command("/msg $data Hello, world!");
return 1;
}
Irssi::command_bind('hello', 'cmd_hello');