mIRC Home    About    Download    Register    News    Help

Print Thread
#98337 22/09/04 09:49 PM
Joined: Sep 2004
Posts: 4
N
notme Offline OP
Self-satisified door
OP Offline
Self-satisified door
N
Joined: Sep 2004
Posts: 4
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



#98338 22/09/04 10:01 PM
Joined: Aug 2004
Posts: 101
D
Vogon poet
Offline
Vogon poet
D
Joined: Aug 2004
Posts: 101
Use an if statement to check for ops:
if $nick !isop $chan { inc -u5.... etc


Maybe I wake up one day to notice that all my life was just a dream!
#98339 22/09/04 10:18 PM
Joined: Sep 2004
Posts: 4
N
notme Offline OP
Self-satisified door
OP Offline
Self-satisified door
N
Joined: Sep 2004
Posts: 4
that was the first thing i tried it didn't work

#98340 22/09/04 10:29 PM
Joined: Aug 2004
Posts: 101
D
Vogon poet
Offline
Vogon poet
D
Joined: Aug 2004
Posts: 101
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
 }
} 


Maybe I wake up one day to notice that all my life was just a dream!
#98341 22/09/04 10:38 PM
Joined: Sep 2004
Posts: 4
N
notme Offline OP
Self-satisified door
OP Offline
Self-satisified door
N
Joined: Sep 2004
Posts: 4
lemme try that like that ty


Link Copied to Clipboard