Hi everybody

i have a little problem

i use this script for notice me when a person write my nick in a channel.

Code:
on *:text:*:#:{
  if ($me isin $1-) && ($chan !== $active) && ($nick != $read(Ti.Cercano.txt, r, $nick)) { //echo  -a $timestamp [10iNFO]8 $nick 10su11 $chan 10sta dicendo: 12«11 $left($$1-,77) $+ ... 12»   } 
}
on *:action:*:#:{
  if ($me isin $1-) && ($chan !== $active) { //echo  -a $timestamp 10[10T10i 10H10a 10C10ercato8 $nick 10s10u 11 $chan $+ 10] 10s10ta 10d10icendo: $left($$1-,77) $+ ... 12»   }
}
on *:notice:*:#:{
  if ($me isin $1-) && ($chan !== $active) { //echo  -a $timestamp 10[10T10i 10H10a 10C10ercato8 $nick 10s10u 11 $chan $+ 10] 10s10ta 10d10icendo: $left($$1-,77) $+ ... 12»   }
}


the problem is that some nicks in Ti.Cercano.txt like |TEST| not work with this script, there are a solution, without use
Code:
&& ($nick != |TEST|) 
?


Thanks in advance smile