diff options
author | Timo Sirainen <cras@irssi.org> | 2002-03-10 21:28:38 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-03-10 21:28:38 +0000 |
commit | 03c71116e044fda9d99e827a4ffb0652d508abb5 (patch) | |
tree | df36506fb09ad6563feaf394a0a47728348cadd6 /scripts/hello.pl | |
parent | 1855e6cc5c84ec861bf1301c09841cb2fd9ad718 (diff) | |
download | irssi-03c71116e044fda9d99e827a4ffb0652d508abb5.zip |
added/removed some default scripts
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2569 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'scripts/hello.pl')
-rw-r--r-- | scripts/hello.pl | 12 |
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'); |