diff --git a/plugin.py b/plugin.py index 5654ccf..a77ea4b 100644 --- a/plugin.py +++ b/plugin.py @@ -2374,7 +2374,7 @@ class ChanTracker(callbacks.Plugin, plugins.ChannelDBHandler): def cautoexpire(self, irc, msg, args, channel, autoexpire): """[] [] - display or set the configuration of auto expiration for new items (-1 to disable, in seconds)""" + returns channel's config or auto remove new elements after (-1 to disable, in seconds)""" cap = ircdb.canonicalCapability('owner') if self.registryValue('allowOpToConfig', channel=channel) \ or ircdb.checkCapability(msg.prefix, cap): @@ -2390,7 +2390,8 @@ class ChanTracker(callbacks.Plugin, plugins.ChannelDBHandler): def cflood(self, irc, msg, args, channel, permit, life, mode, duration): """[] [] [] [] [] - display or set the configuration of flood control ( -1 to disable)""" + returns channel's config or apply (bqeIkrdD) for (in seconds) \ + if an user send more (-1 to disable) messages during (in seconds)""" cap = ircdb.canonicalCapability('owner') if self.registryValue('allowOpToConfig', channel=channel) \ or ircdb.checkCapability(msg.prefix, cap): @@ -2413,7 +2414,10 @@ class ChanTracker(callbacks.Plugin, plugins.ChannelDBHandler): def crepeat(self, irc, msg, args, channel, permit, life, mode, duration, minimum, probability, count, patternLength, patternLife): """[] [] [] [] [] [] [] [] [] [] - display or set the configuration of repeat control ( -1 to disable, -1 to disable pattern creation); is a float between 0 and 1""" + returns channel's config or apply (bqeIkrdD) for (in seconds) \ + if (-1 to disable) repetitions are found during (in seconds)\ + it creates temporary lethal patterns and reapply and ,\ + (-1 to disable pattern creation); is a float between 0 and 1""" cap = ircdb.canonicalCapability('owner') if self.registryValue('allowOpToConfig', channel=channel) \ or ircdb.checkCapability(msg.prefix, cap): @@ -2449,7 +2453,9 @@ class ChanTracker(callbacks.Plugin, plugins.ChannelDBHandler): def ccap(self, irc, msg, args, channel, permit, life, mode, duration, probability): """[] [] [] [] [] [] - display or set the configuration of caplocks control; -1 to disable, is a float between 0 and 1""" + returns channel's config or apply (bqeIkrdD) for (in seconds) \ + if (-1 to disable) messages during (in seconds) \ + contains more than (float between 0-1) uppercase chars""" cap = ircdb.canonicalCapability('owner') if self.registryValue('allowOpToConfig', channel=channel) \ or ircdb.checkCapability(msg.prefix, cap): @@ -2475,7 +2481,8 @@ class ChanTracker(callbacks.Plugin, plugins.ChannelDBHandler): def chl(self, irc, msg, args, channel, permit, life, mode, duration): """[] [] [] [] - display or set hilight control for a given channel -1 to disable""" + returns channel's config or apply (bqeIkrdD) during (in seconds) \ + if (-1 to disable) channel's nicks are found in a message""" cap = ircdb.canonicalCapability('owner') if self.registryValue('allowOpToConfig', channel=channel) \ or ircdb.checkCapability(msg.prefix, cap): @@ -2495,7 +2502,8 @@ class ChanTracker(callbacks.Plugin, plugins.ChannelDBHandler): def cclone(self, irc, msg, args, channel, permit, life, mode, duration): """[] [] [] [] - display or set clone control for a given channel -1 to disable""" + returns channel's config or apply (bqeIkrdD) for (in seconds) \ + if (-1 to disable) users with the same host joined the channel""" cap = ircdb.canonicalCapability('owner') if self.registryValue('allowOpToConfig', channel=channel) \ or ircdb.checkCapability(msg.prefix, cap): @@ -2515,7 +2523,8 @@ class ChanTracker(callbacks.Plugin, plugins.ChannelDBHandler): def cnotice(self, irc, msg, args, channel, permit, life, mode, duration): """[] [] [] [] [] - display or set channel's notice control -1 to disable""" + returns channel's config or apply (bqeIkrdD) for (in seconds) \ + if (-1 to disable) messages are channel's notices during (in seconds)""" cap = ircdb.canonicalCapability('owner') if self.registryValue('allowOpToConfig', channel=channel) \ or ircdb.checkCapability(msg.prefix, cap): @@ -2538,7 +2547,8 @@ class ChanTracker(callbacks.Plugin, plugins.ChannelDBHandler): def ccycle(self, irc, msg, args, channel, permit, life, mode, duration): """[] [] [] [] [] - display or set join/part control -1 to disable""" + returns channel's config or apply (bqeIkrdD) for (in seconds) \ + if (-1 to disable) /part are received by a host during (in seconds)""" cap = ircdb.canonicalCapability('owner') if self.registryValue('allowOpToConfig', channel=channel) \ or ircdb.checkCapability(msg.prefix, cap): @@ -2561,7 +2571,8 @@ class ChanTracker(callbacks.Plugin, plugins.ChannelDBHandler): def cnick(self, irc, msg, args, channel, permit, life, mode, duration): """[] [] [] [] [] - display or set nick changes control -1 to disable""" + returns channel's config or apply (bqeIkrdD) during (in seconds) \ + if an user changes nick (-1 to disable) times during (in seconds)""" cap = ircdb.canonicalCapability('owner') if self.registryValue('allowOpToConfig', channel=channel) \ or ircdb.checkCapability(msg.prefix, cap): @@ -2584,7 +2595,8 @@ class ChanTracker(callbacks.Plugin, plugins.ChannelDBHandler): def cbad(self, irc, msg, args, channel, permit, life, mode, duration): """[] [] [] [] [] - display or set bad control for a given channel -1 to disable""" + returns channel's config or apply (bqeIkrdD) for (in seconds) \ + if an user triggers (-1 to disable) channel's protections during (in seconds)""" cap = ircdb.canonicalCapability('owner') if self.registryValue('allowOpToConfig', channel=channel) \ or ircdb.checkCapability(msg.prefix, cap):