mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jan 2013
Posts: 2
T
tom Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
T
Joined: Jan 2013
Posts: 2
Hi I recently switched from Pidgin and mIRC seems very confusing to me. When I enter a channel, the notices are sent to me in the channel window, along with everyone else's messages. Is there a way to make it so that these notices are sent to me in new tabs, like it does on Pidgin?

I've been messing around with the settings for a few days and still can't seem to figure it out.

Joined: Feb 2011
Posts: 454
K
Pan-dimensional mouse
Offline
Pan-dimensional mouse
K
Joined: Feb 2011
Posts: 454
I use a script.

How to load:
Tools -> Script Editor -> Remote Tab -> File -> New -> Paste code -> File -> Save as -> NoticeRedirect.mrc (or whatever you want).

Code:
/*
* Notice to Query. 
* Makes notices look like queries. 
* 
* References to the spaces alias. 
* http://www.xise.nl/mirc/wiki/doku.php?id=spaces
*
*
* Known Issues:
* Does not play nicely when clicking #channels from services .. the $chr(160) screws stuff up.. 
* If you paste contents into a channel other people might see "A with an accent character" if their client is not using UTF-8. 
*
*/

on ^*:notice:*:?: { 
  if ($istok(ALIS AuthServ BotServ ChanServ GameServ Global GroupServ HelpServ HostServ InfoServ MemoServ NickServ OperServ ProxyScan Q QuoteServ SaslServ StatServ,$nick,32)) {
    haltdef 
    if (!$query($nick)) {
      query $nick
    }                
    echo -lmnrt $nick $chr(60) $+ $nick $+ $chr(62) $spaces($gettok($rawmsg,2-,58))
  }
}
alias spaces { returnex $replace($1,$chr(32),$chr(160)) }


Joined: Jan 2013
Posts: 2
T
tom Offline OP
Bowl of petunias
OP Offline
Bowl of petunias
T
Joined: Jan 2013
Posts: 2
Oh wow thank you so much for the quick reply smile


Link Copied to Clipboard