anti flood at it's simplest
Platform: mIRC
Published Jan 27, 2008
Updated Jan 28, 2008
nice little anti flood system that works on each individual using a set trigger word .. ie !setup or something.
goes into a fresh remote file.
what it does is set a timer (currently the value there is 10 secs) on the nick using the trigger command. if the user tries to use the same trigger within that time period of the timer, it will not function until the timer has expired.
i have left it nice and simple again with no /echo there in favour my dreaded .msg lol. i will get around to using it soon dont worry.
comments and ratings from you nice folk out there?
on *:TEXT:<whatever in here>:#:{
if ( %test. [ $+ [ $nick ] ] == $null ) {
set %test. [ $+ [ $nick ] ] 1
.msg $nick <message or action>
.timer 1 10 unset %test. [ $+ [ $nick ] ]
}
}