Have you checked the tcl archive yet? if not look here http://www.egghelp.org/tclhtml/3478-4-0 ... g-door.htmReynaldo 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
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]"
}
}