Join/Part Ban
Posted by bunkahumpa
Saturday, April 03, 2004
Description: Bans someone for 10 minutes (600 seconds) if they join/part a channel within 5 seconds
Replace #channel with your channel name.
Replace #channel with your channel name.
on *:join:#channel:{
set -u5 %joinpart. $+ $nick 1
}
on *:part:#channel:{
if (%joinpart. [ $+ [ $nick ] ]) {
ban -u600 $chan $nick
msg $chan $nick was banned 10 minutes for join/parting.
}
}