mIRC Home    About    Download    Register    News    Help

Print Thread
#137583 14/12/05 08:42 PM
Joined: Jan 2005
Posts: 55
R
rtg Offline OP
Babel fish
OP Offline
Babel fish
R
Joined: Jan 2005
Posts: 55
hello

some people have an annoying auto onjoin msg script that msgs me when I enter a room

is there any way to prevent it and block these msgs ?

I was thinking about a script that blocks all queries for 1 (or x) seconds from the moment I enter a channel

thanks!

#137584 14/12/05 09:40 PM
Joined: Mar 2005
Posts: 212
N
Fjord artisan
Offline
Fjord artisan
N
Joined: Mar 2005
Posts: 212
on *:join:#:{
if ($nick == $me) {
ignore -p *
timerignore 1 10 ignore -r *
}
}

you could also use on me(i think) instead of on * and then the later comparison
this is untested

Last edited by NeUtRoN_StaR; 14/12/05 09:54 PM.
#137585 15/12/05 09:16 AM
Joined: Apr 2003
Posts: 701
K
Hoopy frood
Offline
Hoopy frood
K
Joined: Apr 2003
Posts: 701
Put the line below in remotes (alt-r alt-r). The . makes it silent, so no '* Added *!*@* to ignore list' messages are shown.

on me:*:JOIN:#:.ignore -pu2 *


Link Copied to Clipboard