ok this is the problem when my bot detects a Guest flood it will only kick a few of them Say They Flooding With 60 Guest Nicks when they Enter it will only kick 4 and the rest just sit there.....instead of mass kicking......is there any kind of code i can add to it...to make it kick all Of The Same Nicks That Are Flooding,Tr|x : Possible Guest_ flood detected, Guest_ have been banned (5 minute ban)
Host Tr|x kicked Guest_Gothz6233 out of the chat room: Mass Guest Flooder kicker
Host Tr|x kicked Guest_Gothz7936 out of the chat room: Mass Guest Flooder kicker
Host Tr|x kicked Guest_Gothz8875 out of the chat room: Mass Guest Flooder kicker.........................Below Is The Code I Use
----------------------------------------------------------------------------------------------
#guestflood on
on *:JOIN:* {
 if (> isin $nick) {
  if (!%GuestFlood) { set -u5 %GuestFlood 1 }
  else { inc %GuestFlood }
  if (%GuestFlood == 3) {
   access $comchan($nick,1) add DENY >*!*@*$* 5
   msg $comchan($nick,1) Possible Guest_ flood detected, Guest_ have been banned (5 minute ban)
   kickguest
   unset %GuestFlood
  }
 }
}
#guestflood end
alias kickguest {
 set %kg 1
 :next
 set %mnick $nick($comchan($me,1),%kg)
 if (!%mnick) { halt }
 if (%mnick == $me) { inc %kg | goto next }
 if (> !isin %mnick) { inc %kg | goto next }
 if (> isin %mnick) { kick $comchan($me,1) %mnick Mass Guest Flooder kicker }
 inc %kg
 goto next
}