please read what has been posted
It doesn't block the contact because:
quote:
Originally posted by CookieRevised
to alter the flood protection you need to edit three variables in the script:
code:
var floodCount = 10; // max amount of nudges allowed in the time period
var floodTime = 10000; // period for floodchecking, in milliseconds
var blockTime = 20000; // period the contact is being block, in milliseconds
// (-1 = unlimited time, aka: contacts will not be unblocked automatically)
As you can see the default is 10 nudges within 10 seconds and the contact will be blocked for 20 seconds.
Therefore, 5 nudges in 5 seconds is allowed (by default)...
Also:
quote:
Originally posted by CookieRevised
When the nudges are send in a extreme fast way, your script has not the time to react on time (in fact, the functions will only be executed after Messenger and Plus! are done processing everything).