diff options
author | zido <zido@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-31 15:38:42 +0000 |
---|---|---|
committer | zido <zido@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-31 15:38:42 +0000 |
commit | a8aadf64c9e04ac2572a22f94c89bf54aee0edf1 (patch) | |
tree | 40e3c2eede9121477e4f32d4d4bb19225479b448 /src/map/irc.h | |
parent | 271543e76dde5d249d3ee8649f6005151f2fd3a3 (diff) | |
download | hercules-a8aadf64c9e04ac2572a22f94c89bf54aee0edf1.tar.gz hercules-a8aadf64c9e04ac2572a22f94c89bf54aee0edf1.tar.bz2 hercules-a8aadf64c9e04ac2572a22f94c89bf54aee0edf1.tar.xz hercules-a8aadf64c9e04ac2572a22f94c89bf54aee0edf1.zip |
Started work on commands for the IRC Bot.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5827 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/irc.h')
-rw-r--r-- | src/map/irc.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/irc.h b/src/map/irc.h index fe48c51ff..044aeddf9 100644 --- a/src/map/irc.h +++ b/src/map/irc.h @@ -1,5 +1,7 @@ #include "map.h"
+#define MAX_ADMINS 25 // [Zido]
+
extern short use_irc;
extern short irc_announce_flag;
@@ -24,4 +26,8 @@ struct IRC_Session_Info { char username[30];
char password[33];
};
+
+/*struct IRC_Authed {
+ char host[256];
+};*/ //(WIP, Don't remove) [Zido]
typedef struct IRC_Session_Info IRC_SI;
|