Quote:
Code:
On @*:Join:[color:red]#Channel[/color]: {
  if ($nick == [color:red]SomeNick[/color]) { ban -k $chan $nick 3 }
}


Change the parts in red to suit your needs.


Instead of if ($nick == SomeNick)

You could make it apply to a list of nicknames with tokens, that way if anyone matching those nicks joined, you can kickban 'em!

Code:
if $findtok(these nicks are banned,$nick,32,1) { ban -k $chan $nick 3 }