mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jan 2004
Posts: 133
W
Vogon poet
OP Offline
Vogon poet
W
Joined: Jan 2004
Posts: 133
Need Help Plz ..

Anyone Have a script to stop PM's ???

I am Getting Spamed By MANY BOTS!!!

Need A Way To Close The Windows Automatically.
Better Yet Not To Take PM's Altogether.

THANKS For Your Help! cool

Joined: Nov 2003
Posts: 228
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Nov 2003
Posts: 228
/ignore -p *

Joined: Jan 2004
Posts: 133
W
Vogon poet
OP Offline
Vogon poet
W
Joined: Jan 2004
Posts: 133
Ok This is How I Did It :

on ^*:open:?:*: {
if (%blockoff == 1) goto End
notice $nick Sorry I do not accept private messages!
notice $nick To get my attention you need to ask in the channel!
halt
:end
}

then in popups

-
PM Blocker
.on: echo -a 13PM-Blocker is: On | set %blockoff 0
.off: echo -a 13PM-Blocker is: Off | set %blockoff 1
-

WORKS GREAT!

Joined: Aug 2004
Posts: 423
C
Fjord artisan
Offline
Fjord artisan
C
Joined: Aug 2004
Posts: 423
i have found this.....

Code:
 on *:TEXT:*:?:{
  if ($regex($1-,/(www|http:|[censored]|#*|sex|cyber|porn|pussy|teen girls)/i)) {
    echo -s $nick Is Spamming You: $1- | msg $nick Spam Ignored. | ignore -u30 $nick | close -m $nick 
  }
}  


this works nicely.... all you would have to do is either add/change the KEY WORDS(in the brackets) and it will block all queries that contain those keywords so you won't see them. you could also i guess remove the spam notice as well if you wish. it just echos a msg in the status menu that you've been spammed .. i think it's a better alternative to using the ignore -p command, this way allows you to get pm's from people you want to get them from.

just thought i'd share grin


Link Copied to Clipboard