diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2012-04-08 12:43:34 +0200 |
---|---|---|
committer | DukePyrolator <DukePyrolator@anope.org> | 2012-04-08 12:43:34 +0200 |
commit | deb5196101bb14d6656fb89b9ec9e5f8b96eb31d (patch) | |
tree | 733001e6fc4af6cb2a42915d586e448dde742f77 /data/chanstats.example.conf | |
parent | 9e1fda2a44dee120e26acc6e51fbe779eea97712 (diff) |
Added Chanstats. It uses a new, improved database format and is not compatible with current phpdenora or magirc installations.
Diffstat (limited to 'data/chanstats.example.conf')
-rw-r--r-- | data/chanstats.example.conf | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/data/chanstats.example.conf b/data/chanstats.example.conf new file mode 100644 index 000000000..2ada76b98 --- /dev/null +++ b/data/chanstats.example.conf @@ -0,0 +1,63 @@ +/* + * Example configuration file for chanstats + * Make sure BotServ, ChanServ and NickServ are running. + */ + +module { name = "m_chanstats" } + +chanstats +{ + /* + * WARNING: DO NOT USE THE SAME DATABASE AS db_mysql! db_mysql drops ALL tables in the db! + * For this, we add a second mysql{ } block after the chanstats{ } configuration block + * and give it another engine name, so m_mysql opens a second connection to the mysql server. + * / + + /* + * The name of this engine. + * This must match with the name in the mysql{ } block + */ + + engine = "mysql/chanstats" + + + smileyshappy = ":) :-) ;) :D :-D" + smileyssad = ":( :-( ;( ;-(" + smileysother = ":/" + + /* + * Enable Chanstats for new registered nicks / channels + * set it to 0 to disable it. + */ + NSDefChanstats = 1 + CSDefChanstats = 1 +} + +mysql +{ + name = "mysql/chanstats" + database = "anope" + server = "127.0.0.1" + username = "anope" + password = "anope" + port = 3306 +} + + + + +module { name = "cs_set_chanstats" } +command { service = "ChanServ"; name = "SET CHANSTATS"; command = "chanserv/set/chanstats"; } + +module { name = "ns_set_chanstats" } +command { service = "NickServ"; name = "SET CHANSTATS"; command = "nickserv/set/chanstats"; } + +module { name = "cs_fantasy_stats" } +command { service = "ChanServ"; name = "STATS"; command = "chanserv/stats"; } +command { service = "ChanServ"; name = "GSTATS"; command = "chanserv/gstats"; } + +module { name = "cs_fantasy_top" } +command { service = "ChanServ"; name = "TOP"; command = "chanserv/top"; } +command { service = "ChanServ"; name = "TOP10"; command = "chanserv/top10"; } +command { service = "ChanServ"; name = "GTOP"; command = "chanserv/gtop"; } +command { service = "ChanServ"; name = "GTOP10"; command = "chanserv/gtop10"; } |