changes
This commit is contained in:
@@ -55,18 +55,21 @@ class Config(ComboParser):
|
||||
section = 'flood'
|
||||
self.add_item(section, 'server', str, None, 'irc server address', False)
|
||||
self.add_item(section, 'target', str, '#flood', 'target to flood', False)
|
||||
self.add_item(section, 'nickserv', str, "nickserv's nickname", '', False)
|
||||
self.add_item(section, 'nickserv', str, 'nickserv', "nickserv's nickname", False)
|
||||
self.add_item(section, 'message', str, None, 'message', False)
|
||||
self.add_item(section, 'threads', int, 1, '# of threads', False)
|
||||
self.add_item(section, 'register', int, 0, 'register nickname when required', False)
|
||||
|
||||
self.add_item(section, 'once', int, 0, 'quit as soon as possible', False)
|
||||
self.add_item(section, 'hilight', int, 0, 'try to hilight all nicks?', False)
|
||||
self.add_item(section, 'waitonsuccess', int, 0, 'wait for a while on success', False)
|
||||
self.add_item(section, 'debug', int, 0, 'use debug', False)
|
||||
self.add_item(section, 'duration', int, 90, 'maximum time to run ', False)
|
||||
self.add_item(section, 'delay', int, 14400, 'if waitonsuccess, wait for $delay before sending another bot', False)
|
||||
self.add_item(section, 'duration', int, 180, 'maximum time to run', False)
|
||||
self.add_item(section, 'delay', str, 14400, 'if waitonsuccess, wait for $delay before sending other bots', False)
|
||||
self.add_item(section, 'nick', str, None, 'specify nickname to use', False)
|
||||
self.add_item(section, 'use_ssl', int, 2, 'Use ssl? (0: false, 1: true, 2: random)', False)
|
||||
self.add_item(section, 'cycle', int, 0, 'cycle flood', False)
|
||||
self.add_item(section, 'change_nick', int, 0, 'Change nick between messages (useful when flooding privates)', False)
|
||||
self.add_item(section, 'use_timeout', int, 0, 'make connexions quit through timeout', False)
|
||||
self.add_item(section, 'clones', int, 1, 'Number of connexion repeat to run', False)
|
||||
self.add_item(section, 'noquerybefore', int, 10, 'do not send query before x secs being connected', False)
|
||||
|
||||
Reference in New Issue
Block a user