mIRC Home    About    Download    Register    News    Help

Print Thread
#12189 20/02/03 02:06 PM
T
ThE_mASk
ThE_mASk
T
I have this script to protect me from spam/invite.
on *:TEXT:*#*:?:{
if ((%ad.ign == yes) && (!$query($nick))) {
write system\spamlog.tms 9[ $+ $time $+ ] < $+ $nick $+ > : $$1-
.closemsg $nick
echo 4 -a *** Detected invite from $nick with address $address($nick,1) !!! (Shift+F3 to view)
if (%spam.msg == $null) set %spam.msg 1
else inc %spam.msg
}
}

But when I am talking to some friend and for example he tell me something with # it closes his query... how to pervent that ? To ignore someone only if his first words are invite/spam ??

#12190 20/02/03 02:47 PM
Joined: Dec 2002
Posts: 1,893
O
Hoopy frood
Offline
Hoopy frood
O
Joined: Dec 2002
Posts: 1,893
That's what the on OPEN event is for.

Replace On *:text:*#*:?:{ with On *:open:?:*#*:{


Link Copied to Clipboard