Query Flood Protection
mIRC Code
+ 0 likes
Please Register to submit score.
| Average Score | 0.0 (of 0 scores) |
| Date Added | May 10, 2009 |
| Last Updated | May 10, 2009 |
| Tags | flood protection query |
Introduction
mIRC Snippet:
Query Flood Protection
Posted on May 10, 2009 10:13 pm
Posted on May 10, 2009 10:13 pm
why ignore everyone? why not ignore the one thats flooding you?
just seems it would be ez just to do this
oh yeah btw whats $jam ??? is it some alias you didnt include?
just seems it would be ez just to do this
| Code: |
| on *:text:*:?:{ inc -u2 $+(%,p2p,.,$nick) if ($($+(%,p2p,.,$nick),2) = 4) { .close -m $nick .ignore -pu60 $address($nick,2) echo -ta *** P2P flood from $nick Address $address($nick,2) - Ignoring P2P's for 60secs... } } |
oh yeah btw whats $jam ??? is it some alias you didnt include?
mIRC Snippet:
Query Flood Protection
Posted on May 11, 2009 5:33 am
Posted on May 11, 2009 5:33 am
as a build on from napa's code there... i would probably add a warning to the nick before the ignore kicked in. also .... looking at mirc, under mirc options there is an inbuilt flood protector which is most useful which is set for ignore time / per lines
[code]
on *:text:*:?:{
inc -u2 $+(%,p2p,.,$nick)
if ($($+(%,p2p,.,$nick),2) = 4) {
.msg $nick please do not flood my pm box as it has triggered a timed ignore on you
.close -m $nick
.ignore -pu60 $address($nick,2)
echo -ta *** P2P flood from $nick Address $address($nick,2) - Ignoring P2P's for 60secs...
}
}
[code]
on *:text:*:?:{
inc -u2 $+(%,p2p,.,$nick)
if ($($+(%,p2p,.,$nick),2) = 4) {
.msg $nick please do not flood my pm box as it has triggered a timed ignore on you
.close -m $nick
.ignore -pu60 $address($nick,2)
echo -ta *** P2P flood from $nick Address $address($nick,2) - Ignoring P2P's for 60secs...
}
}
mIRC Snippet:
Query Flood Protection
Posted on May 11, 2009 11:08 am
Posted on May 11, 2009 11:08 am
hi
u can only do this
u can only do this
| Code: |
on *:text:*:?:{ inc -u3 %fld. $+ $nick if ($($+(%,fld,.,$nick),2) >= 3) { .close -m $nick .ignore -pu60 $wildsite echo 4 -s *** query flood from $nick Address $wildsite - Ignoring for 60secs... } } |
mIRC Snippet:
Query Flood Protection
Posted on May 11, 2009 3:35 pm
Posted on May 11, 2009 3:35 pm
napa is a Great teacher im learning alot from him
mIRC Snippet:
Query Flood Protection
Posted on May 11, 2009 7:09 pm
Posted on May 11, 2009 7:09 pm
Was going to point out the ignore everyone thing, i would go with napa's are maybe try and make your own.







