mIRC Home    About    Download    Register    News    Help

Print Thread
#185577 11/09/07 09:34 AM
Joined: Sep 2007
Posts: 3
S
Self-satisified door
OP Offline
Self-satisified door
S
Joined: Sep 2007
Posts: 3
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?!

su27killer #185578 11/09/07 09:56 AM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
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
}



su27killer #185579 11/09/07 10:04 AM
Joined: Sep 2007
Posts: 32
S
Ameglian cow
Offline
Ameglian cow
S
Joined: Sep 2007
Posts: 32
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.


on me:*:JOIN:#: { .raw part # $crlf join # }
SplitFire #185580 11/09/07 10:16 AM
Joined: Sep 2005
Posts: 2,881
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,881
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
Joined: Sep 2007
Posts: 3
S
Self-satisified door
OP Offline
Self-satisified door
S
Joined: Sep 2007
Posts: 3
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.
su27killer #185583 11/09/07 11:06 AM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
That's correct, your remote scripts. (Alt + R)


Link Copied to Clipboard