How do I stop those "flood check" notices

If you want to know what flood checking is, read FloodChecking.

The most recent CVS version, since released as 0.0.9, has a setting that lets you disable flood checking. Just edit your BMOTION/modules/settings.tcl and change the default setting of

  set bMotionSettings(disableFloodChecks) 0

to

  set bMotionSettings(disableFloodChecks) 1

If you want to turn off flood checking in 0.0.8, here's how:

  • Edit BMOTION/modules/flood.tcl
  • Find this bit of code near the end of the file:
     proc bMotion_flood_check { nick } {
       bMotion_putloglev 3 * "checking flood for $nick"
    
  • Change it to this: (i.e. insert "return 0" after the proc line.
     proc bMotion_flood_check { nick } {
       return 0
       bMotion_putloglev 3 * “checking flood for $nick”
    
  • Save and rehash the bot.