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.
Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Reynaldo
Halfop
Posts: 54 Joined: Wed May 11, 2005 2:51 am
Post
by Reynaldo » Wed Sep 17, 2008 10:33 pm
Hey anyone can help me to creaate a simple scripts that can ban the users join then part less then 3minutes? the spammer always do this. thanks
Reynaldo
Halfop
Posts: 54 Joined: Wed May 11, 2005 2:51 am
Post
by Reynaldo » Fri Sep 19, 2008 2:14 am
yes, i do searching already the intire forums, but i need the simple one
Reynaldo
Halfop
Posts: 54 Joined: Wed May 11, 2005 2:51 am
Post
by Reynaldo » Fri Sep 19, 2008 2:47 am
Code: Select all
bind part - * ban:flyby
proc ban:flyby {nick uhost hand chan arg} {
if {[getchanjoin $nick $chan] >= [expr {[clock seconds]-180}]} {
putquick "MODE $chan +b *!*@[lindex [split $uhost @] 1]"
}
}