mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: May 2004
Posts: 20
H
Hagadol Offline OP
Ameglian cow
OP Offline
Ameglian cow
H
Joined: May 2004
Posts: 20
Is it possible to have MIRC change to a diffrerent colour if a certain person (not you) is writing ?

Joined: Jun 2004
Posts: 291
W
Fjord artisan
Offline
Fjord artisan
W
Joined: Jun 2004
Posts: 291
Adressbook ( alt + b )
go to the colors tab
check the box enabled
click add
then add the nicks you want to highlight in each color
note: this only changes the color of the nick in the nicklist and
channel but it dosnt change the color of their text

Last edited by whatsthedillio; 21/08/04 11:35 AM.
Joined: Jun 2003
Posts: 4,670
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 4,670
Added note:

With IM clients such as MSN/YIM and so forth, you can see when the other person is typing a message. This cannot be done with mIRC or any other IRC client, it is impossible. So if you want to change someone's nickname to a different colour when they are typing a message, you can't.

You may also want to see /help /cnick which colours nicknames from the command line.

Regards,

Joined: May 2004
Posts: 20
H
Hagadol Offline OP
Ameglian cow
OP Offline
Ameglian cow
H
Joined: May 2004
Posts: 20
Is there a command to change the text written by a said person / nick. So each time there text appears it is in a different colour ?

Joined: Jun 2003
Posts: 4,670
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 4,670
You can do this with the mIRC highlight options: ALT+O > IRC > Highlight.

The options are fairly self explanatory, however, if you don't understand something check out /help highlight, and if it still confuses, post here smile

Regards,

Joined: May 2004
Posts: 20
H
Hagadol Offline OP
Ameglian cow
OP Offline
Ameglian cow
H
Joined: May 2004
Posts: 20
Thanks for the reply:

Though this seems to colour the Nick but not the actual text with is written. Is there away to do this ?


Joined: Aug 2003
Posts: 1,825
I
Hoopy frood
Offline
Hoopy frood
I
Joined: Aug 2003
Posts: 1,825
Maybe this, it checks if $nick is a matching highlight entry and if there is a matching entry it uses whatever color was set there.
Code:
on *:text:*:#:{
  if $highlight($nick).color { echo $v1 -mbflirt # $+(<,$nick,>) $1- }  
}


Joined: Dec 2002
Posts: 1,214
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Dec 2002
Posts: 1,214
Code:
on ^*:Text:*:#: {
  var %1- = $1-
  while ($istok(%1-, lol, 32)) %1- = $reptok(%1-, lol, 4Laughing Out Loud, 1, 32)
  if $highlight($nick).color {
    echo $v1 -mbflirt # $+(<,$nick,>) %1-
    halt
  }
}


Using the same code you used, with a few minor modifications with something of my own, I was able to reproduce the fact that while the nickname may be highlighted, the text I want highlighted using ctrl+k (Laughing out loud) remains black so it would look like:

[04:03] < @Nick > Laughing Out Loud that is funny

What i'm going for is something like this:

[04:03] < @Nick > Laughing Out Loud that is funny

See what i'm getting at is how do i fix that because its currently 4:10 am and im scratching my head over it

NOTE: Quickly written so try not to nit-pick the way i done this. I wasnt going for perfection, just to make a point


Link Copied to Clipboard