Hi guys, I have this little script that when I type /watch <nick>
it will make them much more visible with they type something, I was wondering if someone could help make my script a little better.
Code:
;In Aliases -
/watch set %watchednick %watchednick . $+ [ [ $1 ] ] $+ .

;In Remotes - 

on ^*:TEXT:*:#: {
  if ( . $+ $nick $+ . isin %watchednick ) && (kurd !isin $1-) {
    echo $iif($target == $me,$nick,$chan) $timestamp <8 $+ $nick $+ 0> $1-
    haltdef
  }
}

Basically, when I type /watch <nick>, it sets a variable like .nick. and it works perfectly, what i'm trying to do is, if I have two watched nicks (two .nicks. in variables) then it will not show the color yellow (mIRC Code 8) for both, it will show another color for the second one. It doesn't matter which colors I use, as long as it will show two different colors for each person. Thanks in advance.