mIRC Home    About    Download    Register    News    Help

Print Thread
#185577 11/09/07 09:34 AM
S
su27killer
su27killer
S
Hey ppl,

just wanted to ask how to make autoignore script in MiRC, I get many spam messages containining "tr.cx" and those popup windows are annoying.

How could I make MiRC autoignore them?!

#185578 11/09/07 09:56 AM
Joined: Dec 2002
Posts: 3,534
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,534
To ignore the private message:

Code:
On ^*:Open:?:*tr.cx*: {
 halt
}


To ignore the private message and the nickname:

Code:
On ^*:Open:?:*tr.cx*: {
 ignore $nick 2
 halt
}



#185579 11/09/07 10:04 AM
S
SplitFire
SplitFire
S
Code:
on *:text:*tr.cx*:?: { closemsg $nick }

use this, once someone query you a message with tr.cx included, mirc will automatically close the query window
no point of ignoring spammers, they only spam the msg for you once.

#185580 11/09/07 10:16 AM
Joined: Sep 2005
Posts: 2,630
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,630
What SladeKraven provided will stop the window from opening entirely, which is much better than letting it open and then closing it with /closemsg confused

hixxy #185581 11/09/07 10:59 AM
S
su27killer
su27killer
S
Thank you very much smile

But where I have to copy this, in remote window?!

Last edited by su27killer; 11/09/07 11:00 AM.
#185583 11/09/07 11:06 AM
Joined: Dec 2002
Posts: 3,534
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,534
That's correct, your remote scripts. (Alt + R)


Link Copied to Clipboard