oh. thats awesome idea for script.

if your irc network (services) supported kill nicks, its for you:

Code:
on *:START: {
  notify on
  notify +NICK
  notify +NICK
  notify +NICK
  notify +NICK
  notify +NICK
}
on *:NOTIFY: {
  if (+* iswm $nick) inc %::notify. [ $+ [ $cid ] $+ . $+ [ $mid($nick,2) ] ]
  else {
    inc %::notify. [ $+ [ $cid ] $+ . $+ [ $nick ] ]
    whois $nick
  }
}
on *:DISCONNECT: {
  unset %::notify. [ $+ [ $cid ] $+ ] *
}
on *:EXIT: {
  unset %::notify.*
}
raw 311:*: {
  if (%::notify. [ $+ [ $cid ] $+ . $+ [ $2 ] ]) {
    NickServ GHOST $2
    dec %::notify. [ $+ [ $cid ] $+ . $+ [ $2 ] ]
    if (%::notify. [ $+ [ $cid ] $+ . $+ [ $2 ] ] = 0) unset %::notify. [ $+ [ $cid ] $+ . $+ [ $2 ] ]
  }
}


- When any user in IRC use your nick (/nickserv links) you can kill he by /nickserv ghost.

But it works ONLY if your services support this function.
Be IRC Operator! smile