on *:join:#channel: {
; Store a list of words to look for.
var %x = jerk punk loser dork
; If their ident is in the above list, then:
if ($gettok($remove($address($nick,0),*!),1,64) isin %x) {
; Set a wildcard ban on that ident in the form of *word*
mode $chan +b $+(*!*,$ifmatch,*@*)
; Kick them out..
kick $chan $nick Please change your ident to rejoin.
}
}