diff options
author | Zido <Zido@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-08 12:09:36 +0000 |
---|---|---|
committer | Zido <Zido@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-04-08 12:09:36 +0000 |
commit | 74c9a56b7aa52fff54fa4a34a2f31910307b37eb (patch) | |
tree | 9c77d8672a67e520e3a3e589115e98b04d55fa3a /conf-tmpl | |
parent | 8de982a279a9eca6505c790b32ca2f1d559a3380 (diff) | |
download | hercules-74c9a56b7aa52fff54fa4a34a2f31910307b37eb.tar.gz hercules-74c9a56b7aa52fff54fa4a34a2f31910307b37eb.tar.bz2 hercules-74c9a56b7aa52fff54fa4a34a2f31910307b37eb.tar.xz hercules-74c9a56b7aa52fff54fa4a34a2f31910307b37eb.zip |
- The IRC bot now reads a configuration file (irc.c) instead of it all being hardcoded
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5958 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'conf-tmpl')
-rw-r--r-- | conf-tmpl/irc_athena.conf | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/conf-tmpl/irc_athena.conf b/conf-tmpl/irc_athena.conf new file mode 100644 index 000000000..bfe0a0968 --- /dev/null +++ b/conf-tmpl/irc_athena.conf @@ -0,0 +1,36 @@ +// ______ __ __
+// /\ _ \/\ \__/\ \
+// __\ \ \L\ \ \ ,_\ \ \___ __ ___ __
+// /'__`\ \ __ \ \ \/\ \ _ `\ /'__`\/' _ `\ /'__`\
+///\ __/\ \ \/\ \ \ \_\ \ \ \ \/\ __//\ \/\ \/\ \L\.\_
+//\ \____\\ \_\ \_\ \__\\ \_\ \_\ \____\ \_\ \_\ \__/.\_\
+// \/____/ \/_/\/_/\/__/ \/_/\/_/\/____/\/_/\/_/\/__/\/_/
+// _ _ _ _ _ _ _ _ _ _ _ _ _
+// / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \ / \
+//( e | n | g | l | i | s | h ) ( A | t | h | e | n | a )
+// \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/
+//
+//--------------------------------------------------------
+// eAthena IRC Bot Configuration File
+//--------------------------------------------------------
+
+//Turn the IRC Bot 'on' or 'off'
+use_irc: off
+
+//IRC Server Address
+irc_server: irc.deltaanime.net
+
+//IRC Server Port
+irc_port: 6667
+
+//IRC Channel
+irc_channel: #
+
+//IRC Trade Channel
+irc_trade_channel: #
+
+//IRC Nickname
+irc_nick:
+
+//IRC Password ("0" for no pass)
+irc_pass: 0
|