mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Oct 2016
Posts: 2
G
g00fy Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
G
Joined: Oct 2016
Posts: 2
does anyone know of a script that would take all your set highlights from the mirc section like $nick etc and put who messaged you or what was said and where (ie channel wise) into a separate dialog window?

or how hard would this be to create ? I know some scripting but not enough to do this I don't think.I leave my irc connected a lot and I miss highlights fairly often because by the time I get back to it the chat has progressed way past the point of highlight.

thanks for any help

Last edited by g00fy; 10/10/16 06:55 PM.
Joined: Sep 2014
Posts: 259
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Sep 2014
Posts: 259

This will do what you're asking for

Quote:

on *:TEXT:*:#:{
if ($me isin $1-) {
window -a @Highlights
echo @Highlights $asctime(h:nn:ss tt) : $nick // $network // $chan // Message: $1-
echo @Highlights ------------------------------------
}
}


Link Copied to Clipboard