diff options
author | Adam <Adam@anope.org> | 2012-06-11 15:44:48 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-06-11 15:44:48 -0400 |
commit | 873d4287de57f7f9caa23cb2c9265d1ad2804aba (patch) | |
tree | 5180623b77aed5ce77aa0d3e977907070eaf8e57 /data/botserv.example.conf | |
parent | 3626fb246e3afee7a250f02248254b586f4f3686 (diff) |
Split up bs_set
Diffstat (limited to 'data/botserv.example.conf')
-rw-r--r-- | data/botserv.example.conf | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/data/botserv.example.conf b/data/botserv.example.conf index 878e8cc40..564668771 100644 --- a/data/botserv.example.conf +++ b/data/botserv.example.conf @@ -248,3 +248,63 @@ command { service = "BotServ"; name = "KICK"; command = "botserv/kick"; } module { name = "bs_set" } command { service = "BotServ"; name = "SET"; command = "botserv/set"; } +/* + * bs_set_dontkickops + * + * Provides the command botserv/set/dontkickops. + * + * Used for preventing BotServ from kicking channel operators. + */ +module { name = "bs_set_dontkickops" } +command { service = "BotServ"; name = "SET DONTKICKOPS"; command = "botserv/set/dontkickops"; } + +/* + * bs_set_dontkickvoices + * + * Provides the command botserv/set/dontkickvoices. + * + * Used for preventing BotServ from kicking voices. + */ +module { name = "bs_set_dontkickvoices" } +command { service = "BotServ"; name = "SET DONTKICKVOICES"; command = "botserv/set/dontkickvoices"; } + +/* + * bs_set_fantasy + * + * Provides the command botserv/set/fantasy. + * + * Used for enabling or disabling BotServ's fantaisist commands. + */ +module { name = "bs_set_fantasy" } +command { service = "BotServ"; name = "SET FANTASY"; command = "botserv/set/fantasy"; } + +/* + * bs_set_greet + * + * Provides the command botserv/set/greet. + * + * Used for enabling or disabling BotServ's greet messages in a channel. + */ +module { name = "bs_set_greet" } +command { service = "BotServ"; name = "SET GREET"; command = "botserv/set/greet"; } + +/* + * bs_set_nobot + * + * Provides the command botserv/set/nobot. + * + * Used by Services Operators to prohibit specific channels from assigning BotServ bots. + */ +module { name = "bs_set_nobot" } +command { service = "BotServ"; name = "SET NOBOT"; command = "botserv/set/nobot"; } + +/* + * bs_set_private + * + * Provides the command botserv/set/private. + * + * Used by Services Operators to prohibit specific BotServ bots from being assigned to channels. + */ +module { name = "bs_set_private" } +command { service = "BotServ"; name = "SET PRIVATE"; command = "botserv/set/private"; } + |