I modified it to this so ignoring all ctcp on all networks isn't needed .. what ya think?
Code:
on *:CONNECT:.debug -i $iif($debug == $null,NUL,$debug) ctcp_catcher
alias ctcp_catcher {
  tokenize 32 $1
  if ($1 != <-) return
  if (($5 == :VERSION) || ($5 == VERSION)) {
    .ignore -twu1 $right($2,-1)
    var %to = $gettok($2,1,33)
    if ($left(%to,1) == :) %to = $right(%to,-1)
    ctcpreply %to VERSION Not telling v1.1
  }
  return
}

This still allows any other ctcp through.

Last edited by r0ck0; 14/10/03 01:55 PM.