mIRC Home    About    Download    Register    News    Help

Print Thread
M
MauS
MauS
M
I have "Show ctcp in activel" switched on.

Can i somehow supress speific ctcpreplies so that they won't be shown in active window?

M
MauS
MauS
M
Oh, i see: just with a /halt command. This means mIRC help file is lying.

Quote:
The ^ event prefix currently works only on the following types of events: ACTION, BAN, CHAT, DEHELP, DEOP, DEVOICE, HELP, INVITE, JOIN, KICK, MODE, NICK, NOTICE, OP, OPEN, PART, PING, TEXT, UNBAN, USERMODE, VOICE, QUIT, SERV, SERVERMODE, SNOTICE, TOPIC, WALLOPS.


Joined: Nov 2003
Posts: 2,321
T
Hoopy frood
Offline
Hoopy frood
T
Joined: Nov 2003
Posts: 2,321
yes.. that's right.

a good example of something that should use ^ but doesn't:

on *:input:#:{
dostuff
haltdef
}
this works, but if you add ^ it doesn't

edit: /halt is not the same as /haltdef, so the help file isn't lying.

Last edited by tidy_trax; 04/11/03 06:37 PM.
Joined: Dec 2002
Posts: 416
O
Fjord artisan
Offline
Fjord artisan
O
Joined: Dec 2002
Posts: 416
This will halt the CTCP command from being showin in active if they are SLOTS, SOUND, MP3


ctcp *:*:*: {
if ( SLOTS isin $1 ) || ( Sound isin $1 ) || ( Mp3 isin $1 ) {
halt
}
}


Link Copied to Clipboard