| View previous topic :: View next topic |
| Author |
Message |
Reynaldo Halfop
Joined: 11 May 2005 Posts: 54
|
Posted: Wed Sep 17, 2008 10:33 pm Post subject: users join and part about 3minutes |
|
|
| 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 |
|
| Back to top |
|
 |
Callisto Halfop
Joined: 13 Mar 2005 Posts: 86
|
Posted: Thu Sep 18, 2008 4:53 pm Post subject: Re: users join and part about 3minutes |
|
|
| 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-0-1-revolving-door.htm |
|
| Back to top |
|
 |
Reynaldo Halfop
Joined: 11 May 2005 Posts: 54
|
Posted: Fri Sep 19, 2008 2:14 am Post subject: |
|
|
yes, i do searching already the intire forums, but i need the simple one  |
|
| Back to top |
|
 |
Reynaldo Halfop
Joined: 11 May 2005 Posts: 54
|
Posted: Fri Sep 19, 2008 2:47 am Post subject: |
|
|
| Code: |
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]"
}
}
|
|
|
| Back to top |
|
 |
|