mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Nov 2003
Posts: 257
A
Fjord artisan
OP Offline
Fjord artisan
A
Joined: Nov 2003
Posts: 257
Is it possible to highlight a nick when they join the channel? What if i was away and I wanted to highlight each nick while I wasn't at my computer. How would I do this ?

Joined: Jun 2003
Posts: 5,024
M
Hoopy frood
Offline
Hoopy frood
M
Joined: Jun 2003
Posts: 5,024
on *:join:#channel:{ cnick $nick 6 }

This sets each nick that joins purple. You could use it with:

on *:part:#channel:{ cnick -r $nick }

Or just if you're away:

on *:join:#channel:{
if ($away == $true) {
cnick $nick 6
}
}


..and so forth. See /help /cnick.

Hope this helps!

Regards,


Mentality/Chris
Joined: Nov 2003
Posts: 257
A
Fjord artisan
OP Offline
Fjord artisan
A
Joined: Nov 2003
Posts: 257
is there a way of highlighting(maybe im using the wrong word) so that you would be able to use a command with $snicks ? I want the nicks to be selected in the nicklist

Joined: Aug 2003
Posts: 1,831
I
Hoopy frood
Offline
Hoopy frood
I
Joined: Aug 2003
Posts: 1,831
  • on *:join:#:if $away { sline -a # $nick }

Joined: Nov 2003
Posts: 257
A
Fjord artisan
OP Offline
Fjord artisan
A
Joined: Nov 2003
Posts: 257
thanks smile


Link Copied to Clipboard