mIRC Homepage
Posted By: notme shunning flooder not ops - 22/09/04 09:49 PM
here is what I got so far

;on @*:TEXT:*:#:{
; inc -u5 $+(%,flood;,$address,;,$chan)
;
; if ( [ [ $+(%,flood;,$address,;,$chan) ] ] > 8) {
;
; shun $nick Flooding | timershun $+ $nick 1 240 unshun $nick

I have tried everything with no evial to get this not to shun ops


Posted By: dr_Eamer Re: shunning flooder not ops - 22/09/04 10:01 PM
Use an if statement to check for ops:
if $nick !isop $chan { inc -u5.... etc
Posted By: notme Re: shunning flooder not ops - 22/09/04 10:18 PM
that was the first thing i tried it didn't work
Posted By: dr_Eamer Re: shunning flooder not ops - 22/09/04 10:29 PM
How do you mean? Perhaps you did something wrong? Why don't you paste the code with it in?

This should normally work perfectly:
Code:
on @*:TEXT:*:#:{
 if $nick !isop $chan {
   inc -u5 $+(%,flood;,$address,;,$chan)

   if ( [ [ $+(%,flood;,$address,;,$chan) ] ] > 8) {

   shun $nick Flooding | timershun $+ $nick 1 240 unshun $nick
 }
} 
Posted By: notme Re: shunning flooder not ops - 22/09/04 10:38 PM
lemme try that like that ty
© mIRC Discussion Forums