mIRC Home    About    Download    Register    News    Help

Print Thread
#131868 05/10/05 05:14 PM
Joined: Feb 2005
Posts: 344
B
Fjord artisan
OP Offline
Fjord artisan
B
Joined: Feb 2005
Posts: 344
hi
I use this to color the nicks in the channel window:
Code:
on ^*:TEXT:*:#: { 
if ($nick isop $chan) {
echo -ti2mbfl # 4««14 $nick 4»» $1- | haltdef
}
elseif ($nick ishop $chan) {
echo -ti2mbfl # 14««14 $nick 14»» $1- | haltdef
}
elseif ($nick isvoice $chan) {
echo -ti2mbfl # 10««14 $nick 10»» $1- | haltdef
}
else {
echo -ti2mbfl # 6««14 $nick 6»» $1- | haltdef
}
}
  


But htis doesn't color the nick if he or she is in a query with me.
How do I make the nick also color in a query.
In query the nick doesn't have to be colored by mode.
Thanks for helping smile

Greetzz

#131869 05/10/05 05:43 PM
Joined: Oct 2004
Posts: 8,330
Hoopy frood
Offline
Hoopy frood
Joined: Oct 2004
Posts: 8,330
Code:
on ^*:text:*:?: {
  echo -ti2mbfl $nick 6««14 $nick 6»» $1- | haltdef
}


Just change the format/color to what you like.


Invision Support
#Invision on irc.irchighway.net
#131870 05/10/05 06:00 PM
Joined: Feb 2005
Posts: 344
B
Fjord artisan
OP Offline
Fjord artisan
B
Joined: Feb 2005
Posts: 344
And thank you ones agian master smile

#131871 05/10/05 06:12 PM
Joined: Oct 2004
Posts: 8,330
Hoopy frood
Offline
Hoopy frood
Joined: Oct 2004
Posts: 8,330
Btw, you may want to do this in DCC as well.


Invision Support
#Invision on irc.irchighway.net

Link Copied to Clipboard