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.

users join and part about 3minutes

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
R
Reynaldo
Halfop
Posts: 54
Joined: Wed May 11, 2005 2:51 am

users join and part about 3minutes

Post by Reynaldo »

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
C
Callisto
Halfop
Posts: 86
Joined: Sun Mar 13, 2005 11:04 am

Re: users join and part about 3minutes

Post by Callisto »

Reynaldo wrote: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
Have you checked the tcl archive yet? if not look here http://www.egghelp.org/tclhtml/3478-4-0 ... g-door.htm
R
Reynaldo
Halfop
Posts: 54
Joined: Wed May 11, 2005 2:51 am

Post by Reynaldo »

yes, i do searching already the intire forums, but i need the simple one :D
R
Reynaldo
Halfop
Posts: 54
Joined: Wed May 11, 2005 2:51 am

Post by Reynaldo »

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]" 
 } 
}
Post Reply