Hello,

After 15 years away from IRC networks, I’m getting back on mIRC, of course. I want to style the different messages.

So far, this is what I’ve managed. I’ve formatted my own messages as well as those from others.

Code
on ^*:TEXT:*:#: {
  haltdef
  echo -t $chan 94 $time(HH:nn:ss) 64 $nick : 15 $1-
}


on *:INPUT:#: {
  if (/* !iswm $1) {
    haltdef
    echo -t $chan 14 $time(HH:nn:ss) 65 $me : 15 $1-
  }
}

Where I’m running into a problem is with nickname colors. For example, the nickname SkullGold appears in red in the user list, but not in the messages. I’d like OPs to appear in red, half-ops in green, voiced users in white, and everyone else in orange.

[Linked Image from i.imgur.com]