summaryrefslogtreecommitdiff
path: root/scripts/hello.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/hello.pl')
-rw-r--r--scripts/hello.pl12
1 files changed, 0 insertions, 12 deletions
diff --git a/scripts/hello.pl b/scripts/hello.pl
deleted file mode 100644
index 82adfe22..00000000
--- a/scripts/hello.pl
+++ /dev/null
@@ -1,12 +0,0 @@
-# "Hello, world!" script :) /hello <nick> sends "Hello, world!" to <nick>
-
-use Irssi;
-use strict;
-
-sub cmd_hello {
- my ($data, $server, $channel) = @_;
-
- $server->command("/msg $data Hello, world!");
-}
-
-Irssi::command_bind('hello', 'cmd_hello');