summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2008-12-18 03:31:13 -0500
committerdoy <doy@tozt.net>2008-12-18 03:31:13 -0500
commitc2632915b95cdb8b5328c6cbacad6ebbc861962c (patch)
treefa1ff7b3746fd2d09534d2c300b0193ba2151478 /bin
parent0c774a8d1d5c004e836ab2c4ae94bb884a325ffc (diff)
downloadbot-games-c2632915b95cdb8b5328c6cbacad6ebbc861962c.tar.gz
bot-games-c2632915b95cdb8b5328c6cbacad6ebbc861962c.zip
add a script to run the bot
Diffstat (limited to 'bin')
-rw-r--r--bin/run11
1 files changed, 11 insertions, 0 deletions
diff --git a/bin/run b/bin/run
new file mode 100644
index 0000000..14f9577
--- /dev/null
+++ b/bin/run
@@ -0,0 +1,11 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Bot::Games;
+
+my $bot = Bot::Games->new(
+ server => 'irc.efnet.net',
+ channels => ['#netmonster'],
+ nick => 'doygames',
+);
+$bot->run;