This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

[solved] flood exceptions

General support and discussion of Eggdrop bots.
Post Reply
w
wwtk
Voice
Posts: 2
Joined: Mon Dec 03, 2007 12:27 am

[solved] flood exceptions

Post by wwtk »

Hello,

I have several other bots on my network that provide information to users via channel commands. These bots are all ops of one level or another (using unrealircd) but even with +dontkickops turned on they still get kicked for flooding.

Thanks for reading!

WWTK
Last edited by wwtk on Mon Dec 03, 2007 3:34 am, edited 1 time in total.
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

That setting refers to bot users (not channel access).

The following code will stop your ops from being punished:

Code: Select all

bind flud - * fludexempt

proc fludexempt {nick uhost hand type chan} {
 return [expr {[validchan $chan] && [isop $nick $chan]}]
}

putlog "TCL loaded: fludexempt by Sir_Fz"
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
w
wwtk
Voice
Posts: 2
Joined: Mon Dec 03, 2007 12:27 am

[Solved] Flood exception

Post by wwtk »

Just FYI to anyone who finds this later on.

You must put this bind after the server module is loaded. It works perfectly, thanks for the solution Alchera


WWTK
Post Reply