diff options
author | Adam <Adam@anope.org> | 2013-03-30 19:08:07 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-03-30 19:08:07 -0500 |
commit | 4694c7afb4c0cabdf615021a69d550a9c60c42e0 (patch) | |
tree | 1ff5e05ee872585a1878651357fb5d07695672b6 /data/botserv.example.conf | |
parent | a52293336f0a0b87ed4a21dbe2b2b1dc2caf934f (diff) |
Split up bs_kick subcommands into real subcommands
Diffstat (limited to 'data/botserv.example.conf')
-rw-r--r-- | data/botserv.example.conf | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/data/botserv.example.conf b/data/botserv.example.conf index 4192b085f..19946c42a 100644 --- a/data/botserv.example.conf +++ b/data/botserv.example.conf @@ -231,12 +231,33 @@ command { service = "BotServ"; name = "INFO"; command = "botserv/info"; } /* * bs_kick * - * Provides the command botserv/kick. + * Provides the commands: + * botserv/kick - Dummy help wrapper for the KICK command. + * botserv/kick/amsg - Configures BotServ's AMSG kicker. + * botserv/kick/badwords - Configures BotServ's badwords kicker. + * botserv/kick/bolds - Configures BotServ's bold text kiceker. + * botserv/kick/caps - Configures BotServ's capital letters kicker. + * botserv/kick/colors - Configures BotServ's color kicker. + * botserv/kick/flood - Configures BotServ's flood kicker. + * botserv/kick/italics - Configures BotServ's italics kicker. + * botserv/kick/repeat - Configures BotServ's repeat kicker. + * botserv/kick/reverses - Configures BotServ's reverse kicker. + * botserv/kick/underlines - Configures BotServ's reverse kicker. * * Used for configuring what bots should kick for. */ module { name = "bs_kick" } command { service = "BotServ"; name = "KICK"; command = "botserv/kick"; } +command { service = "BotServ"; name = "KICK AMSG"; command = "botserv/kick/amsg"; } +command { service = "BotServ"; name = "KICK BADWORDS"; command = "botserv/kick/badwords"; } +command { service = "BotServ"; name = "KICK BOLDS"; command = "botserv/kick/bolds"; } +command { service = "BotServ"; name = "KICK CAPS"; command = "botserv/kick/caps"; } +command { service = "BotServ"; name = "KICK COLORS"; command = "botserv/kick/colors"; } +command { service = "BotServ"; name = "KICK FLOOD"; command = "botserv/kick/flood"; } +command { service = "BotServ"; name = "KICK ITALICS"; command = "botserv/kick/italics"; } +command { service = "BotServ"; name = "KICK REPEAT"; command = "botserv/kick/repeat"; } +command { service = "BotServ"; name = "KICK REVERSES"; command = "botserv/kick/reverses"; } +command { service = "BotServ"; name = "KICK UNDERLINES"; command = "botserv/kick/underlines"; } /* * bs_set |