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: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
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]
}
}