mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Sep 2005
Posts: 15
O
Pikka bird
OP Offline
Pikka bird
O
Joined: Sep 2005
Posts: 15
I want that if someone highlight me my text is red.
And I need a addon that my unvoiced/opped people are white, my voiced orange, and my oppend blue, and myself red in the nicklist.

Please help / links!

Joined: Sep 2005
Posts: 20
Ameglian cow
Offline
Ameglian cow
Joined: Sep 2005
Posts: 20
?!?? Isn't it easyer just to open the adress book... and then colors tab..... and to make the settings from there.... i'm not sure there's need to explain what to do... when u see the dialog u'll understand it's easy smile chan modes + make on color add..... chan modes @ choose color add.... % .... and nick $me - color add.... and if u want there are some more options (4 example u can color the nicks in notify list).....

Respect ! ! !

Joined: Sep 2005
Posts: 15
O
Pikka bird
OP Offline
Pikka bird
O
Joined: Sep 2005
Posts: 15
Ok, so how can I create it for $me

-

I got:
Nick color 'Blue'
Nick/adress '$me'


And it still don't work, so pls give me right instructions (thanks for helping)

Joined: Sep 2005
Posts: 20
Ameglian cow
Offline
Ameglian cow
Joined: Sep 2005
Posts: 20
Quote:

Color - Blue

Method - Listbox

mark the checkbox adres / nick

$me

mark the user mode checkbox

@


And this will make your nick in blue in nicklist when u've got op...
But if u have more custom colors for your nick or for $me ... you've got to change them or this wont work....

Joined: Jul 2003
Posts: 655
Fjord artisan
Offline
Fjord artisan
Joined: Jul 2003
Posts: 655
Indeed, the list is prioritised top down, so move the one for your own nick nearer to the top.


"Allen is having a small problem and needs help adjusting his attitude" - Flutterby
Joined: Feb 2005
Posts: 344
B
Fjord artisan
Offline
Fjord artisan
B
Joined: Feb 2005
Posts: 344
It seems you like colors smile
What about this :
Code:
 on ^*:TEXT:*:#: { 
if ($nick isop $chan) {
echo -ti2mbfl # 4«« $nick 4»» $1- | haltdef
}
elseif ($nick ishop $chan) {
echo -ti2mbfl # 15«« $nick 15»» $1- | haltdef
}
elseif ($nick isvoice $chan) {
echo -ti2mbfl # 10«« $nick 10»» $1- | haltdef
}
else {
echo -ti2mbfl # 6«« $nick 6»» $1- | haltdef
}
}
 


It colors the tags around the nicks that you see in the channels.
For coloring your own nick you have to use an on input event.
I don't know the normal on input but here is what I have:
Code:
on *:INPUT:*: {
  if ($Left($1,1) != /) && (!$Ctrlenter) && ($Active != Status Window) && ($Status == connected) {
    .var %a = $0
    msg $active $1-
    halt         
  }
}
  

And to color your nick I have this:
Code:
 alias say { .msg $active $1- }
alias msg { .msg $1- | echo $1 $timestamp $+(12«« ,$me,12 »») $2- }
 

I hope it works for you.

Greetzz


Link Copied to Clipboard