PM Blocker/Ignore Script
Platform: mIRC
Published Jan 22, 2010
Updated Jan 22, 2010
Hi All, i seen alot of Ignore Scripts And Pm Blockers on here and they seem abit over done
So i'm posting my code very basic but does the job
Hope you all like it Thanks.
Of Course You Can change/edit the message to what suits your needs
This Part goes in the Channel Popups for easy right click for the user
Ignore P.M's
.Ignore user(s)
..Ignore P.M's from $$1 :/ignore -p $$1
..Unignore P.M's from $$1 :/ignore -rp $$1
..Clear ignore list: /ignore -rp
.Accept/decline all
..Accept all pm's: unset %nopms | echo $color(notice) -a $+(-,$me,-) Now accepting P.m's
..Decline all pm's: set %nopms 1 | echo $color(notice) -a $+(-,$me,-) Now declining P.M's
}
And This Part goes in your remotes
on ^*:OPEN:?:*: {
if (%nopms) {
.msg $nick I am currently not Accepting pm's please try again later
halt
}
}
on *:exit: unset %nopms
}