mirror of
https://github.com/anope/anope.git
synced 2026-06-25 15:46:37 +02:00
64 lines
1.7 KiB
Plaintext
64 lines
1.7 KiB
Plaintext
/*
|
|
* 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"; }
|