mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Dec 2005
Posts: 4
P
PaN12 Offline OP
Self-satisified door
OP Offline
Self-satisified door
P
Joined: Dec 2005
Posts: 4
Hi again

I want to see my L/Q msgs in $active or just in all channels, anyone know howto?

Thanks for helping

- PaN 12

Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
It would help if you'd supply an example of a message from L/Q that is one that you'd want displayed. In the meantime, I think the following would work
Code:
on *:notice:*:*:{
if ($nick == L) || ($nick == Q) {
.msg $active $nick $1-
}
}
  


If you want to see the messages, but don't want to send them to the channel, change
Code:
.msg $active $nick $1-  
to
Code:
 echo -a $nick $1- 


I included the $nick identifier so that you would be able to tell if the message came from L or Q .

confused Star Trek moment? L = Lwaxana (Troi), Q (John DeLancie) -- maybe? laugh

Joined: Aug 2005
Posts: 525
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Aug 2005
Posts: 525
L and Q are the 'ChanServ' of the QuakeNet irc network.
L is the lite version.


Link Copied to Clipboard