I have this little script that send a notice to everyone joining the channel. I want to prevent the bot from being laggued when there is a join flood. So i want the bot stop sending notices for 1 min, when there is 3 joins (or more) in 1 second. Thanks in advance
bind join -|- * join_culture
proc join_culture {nick host hand chan} {
if {$chan == "#culture"} {
puthelp "NOTICE $nick :tapez !help dans #culture pour avoir la liste des commandes"
}
}