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.

Join-flood protection

Old posts that have not been replied to for several years.
Locked
B
Balkanac
Voice
Posts: 12
Joined: Mon Aug 15, 2005 12:38 pm

Join-flood protection

Post by Balkanac »

Hello,

I need a protection-script for join-floods.

The bot must akill the hostmask that makes join-floods...


/akill *@host.tld abusive join flood

Can anyone help me?

Sorry for my bad English.
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

Code: Select all

bind flud - join foo
proc foo {n u args} {
   regsub {[^@]+} $u * u
   putserv "akill $u :abusive join flood"
}
I feel obliged to say that using server bans (klines), let alone network-wide bans (glines/akills) for channel offenses is idiotic; but we obviously have to get used to the reality that nowadays lots of clueless people are admins & ircops on Unreal servers nobody has heard of
connection, sharing, dcc problems? click <here>
before asking for scripting help, read <this>
use

Code: Select all

 tag when posting logs, code
Locked