mIRC Homepage
Posted By: alkahol1k highlight nicks in the nicklist - 16/08/04 08:34 PM
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 ?
Posted By: Mentality Re: highlight nicks in the nicklist - 16/08/04 08:41 PM
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,
Posted By: alkahol1k Re: highlight nicks in the nicklist - 16/08/04 09:03 PM
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
Posted By: Iori Re: highlight nicks in the nicklist - 16/08/04 09:42 PM
  • on *:join:#:if $away { sline -a # $nick }
Posted By: alkahol1k Re: highlight nicks in the nicklist - 17/08/04 03:39 AM
thanks smile
© mIRC Discussion Forums