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.

Baning oped ussers

Old posts that have not been replied to for several years.
Locked
k
kodikas

Baning oped ussers

Post by kodikas »

I`m using mc.ban.flooders tcl in my channel.Why my bot bans oped users in channel.They are not in bots user list.Maby there is beter flood protection script for channel.Thanks for help :)
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

It's because they aren't in your bots user list. Most of these types of scripts require those to be exempted to actually be bot users. Solution is to just add them :P
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
User avatar
Dedan
Master
Posts: 260
Joined: Wed Jul 09, 2003 10:50 pm
Location: Memphis

Post by Dedan »

maybe this will work for you:

find:

Code: Select all

proc mc:tw:all {nick uhost hand type chana} {
 global kickbantime botnick mc_bf lastbind {botnet-nick} {use-silence}
 set exempt [split $mc_bf(exempt) "|"]

change to:

Code: Select all

proc mc:tw:all {nick uhost hand type chana} {
 global kickbantime botnick mc_bf lastbind {botnet-nick} {use-silence}
 set chan [string tolower $chana]
 if {![botisop $chan] || [isop $nick $chan]} {return 0}
 set exempt [split $mc_bf(exempt) "|"]

I hope this helps :P
I once was an intelligent young man, now i am old and i can not remember who i was.
Locked