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/part +b nick

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
s
swasteris
Voice
Posts: 5
Joined: Thu Aug 24, 2006 12:51 pm

join/part +b nick

Post by swasteris »

Hi! I need a script who set +b to nick if this join/part channel per 10sek. HELP!! very need this script. tnx :|
User avatar
username
Op
Posts: 196
Joined: Thu Oct 06, 2005 9:20 am
Location: Russian Federation, Podolsk
Contact:

Post by username »

Use AllProtection4.6b6 script with protection from all kind of flood, or search in tcl archive for words Flyby.
User avatar
ZEXEL
Halfop
Posts: 45
Joined: Tue Jun 27, 2006 10:47 pm
Contact:

Help!

Post by ZEXEL »

I suggetst you too for using XCHANNEL 4.2 from demond and it's good for the alternatives! :wink:
.:[ Knowledge Is The Power ]:.
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Re: join/part +b nick

Post by Alchera »

swasteris wrote:Hi! I need a script who set +b to nick if this join/part channel per 10sek. HELP!! very need this script. tnx :|
If that is all you wish then the solution is simple and one small script that just does that one function is all you need:

Anti Flyby by MC_8
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
User avatar
chandra Sha
Voice
Posts: 12
Joined: Tue Oct 31, 2006 1:27 am
Location: South Borneo

Post by chandra Sha »

anyone have try sentinel.tcl from magnificent Eggdrop

# sentinel.tcl v2.70 (15 April 2002)
# Copyright 1998-2002 by slennox
# slennox's eggdrop page - http://www.egghelp.org/

# Flood protection system for eggdrop, with integrated BitchX CTCP
# simulation. This script is designed to provide strong protection for your
# bot and channels against large floodnets and proxy floods.
# * Channel join-part floods. A common type of channel flood in which many
# floodbots cycle the channel.
# * Channel nick floods. Nick floods are unique in that they can occur even
# after a channel is locked. sentinel has special mechanisms to deal with
# this as effectively as possible.
If you tired can't resolve, get rest for a while,
Refresh body and mind
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

sentinel.tcl is an excellent script for channel protection.

It is also included in the netbots scripts for those with botnets.
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
m
metroid
Owner
Posts: 771
Joined: Wed Jun 16, 2004 2:46 am

Post by metroid »

Code: Select all

set flyby 20

setudef flag flyby

bind PART -|- *   ban:flyby

proc ban:flyby {nickname hostname handle channel {reason ""}} {
  global flyby
  if {[channel get $channel flyby] && ![matchattr $handle o|o $channel] && [expr ([clock seconds] - [getchanjoin $nickname $channel])] < $flyby} {
    pushmode $channel +b [maskhost $hostname]
  }
}
Post Reply