mirror of
https://github.com/anope/anope.git
synced 2026-06-28 13:16:38 +02:00
aea86906f4
Merged operserv/modlist permission into operserv/modinfo. Fixed ChanServ INFO privilege to actually work for /BotServ INFO too for those users who have it, instead of only for founders. Fixed some typos aswell as removed whitespaces along the way.
46 lines
1.5 KiB
Plaintext
46 lines
1.5 KiB
Plaintext
/*
|
|
* Example configuration file for chanstats
|
|
* Make sure BotServ, ChanServ and NickServ are running.
|
|
*/
|
|
|
|
module { name = "m_chanstats" }
|
|
chanstats
|
|
{
|
|
/*
|
|
* The name of this engine.
|
|
* This must match with the name of an SQL engine block.
|
|
*/
|
|
|
|
engine = "mysql/main"
|
|
|
|
/*
|
|
* An optional prefix to prepended to the name of each created table.
|
|
* Do not use the same prefix for other programs.
|
|
*/
|
|
prefix = "anope_"
|
|
|
|
smileyshappy = ":) :-) ;) ;-) :D :-D :P :-P"
|
|
smileyssad = ":( :-( ;( ;-("
|
|
smileysother = ":/ :-/"
|
|
|
|
/*
|
|
* Enable Chanstats for newly registered nicks / channels.
|
|
* Set it to 0 to disable it.
|
|
*/
|
|
NSDefChanstats = 1
|
|
CSDefChanstats = 1
|
|
}
|
|
command { service = "ChanServ"; name = "SET CHANSTATS"; command = "chanserv/set/chanstats"; }
|
|
command { service = "NickServ"; name = "SET CHANSTATS"; command = "nickserv/set/chanstats"; }
|
|
command { service = "NickServ"; name = "SASET CHANSTATS"; command = "nickserv/saset/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"; }
|