Top

Mass Except

+ 0 likes
Please Register to submit score.
Average Score  2.0
Scores Submitted  1
Date Added  Nov 04, 2007
Last Updated  Nov 04, 2007

Introduction

This is a Mass Except Script that when you click a nick, it excepts them(+e) in the chan a grand total of 5 times. :o enjoy!

Grab the Code

Comments

  (9)  RSS
TropNul
Comments: 25
 
mIRC Snippet:  Mass Except
Posted on Nov 4, 2007 1:53 pm
This script won't work elsewhere except on your mIRC. You used a global variable %except which only you knows. Furthermore, a '}' is missing at the end.

Please modify :)
jewsus
Comments: 9
 
mIRC Snippet:  Mass Except
Posted on Nov 4, 2007 3:13 pm
You also never had a set %except to unset.

Not sure if that really matters. xD
NightCrawler
Comments: 11
 
mIRC Snippet:  Mass Except
Posted on Nov 4, 2007 4:01 pm
I see what your saying jewsus. I took out my set $$1 %except by mistake
NightCrawler
Comments: 11
 
mIRC Snippet:  Mass Except
Posted on Nov 4, 2007 4:01 pm
I see what your saying jewsus. I took out my set $$1 %except by mistake
Korvin
Comments: 238
 
mIRC Snippet:  Mass Except
Posted on Nov 4, 2007 6:20 pm
could be:
mode $chan +eeeee %except $address(%except,1) $address(%except,2) $address(%except,3) $address(%except,4)
Korvin
Comments: 238
 
mIRC Snippet:  Mass Except
Posted on Nov 4, 2007 6:20 pm
and thats not mass =p
^silk
Comments: 16
 
mIRC Snippet:  Mass Except
Posted on Nov 4, 2007 6:51 pm
Code:
 set $$1 %except
should be changed to:
Code:
 set %except $$1

Or use a local variable:
Code:
 var %except = $$1
Thus, you wouldn't need /set and /unset. Also, you don't check if you are an op.
Korvin
Comments: 238
 
mIRC Snippet:  Mass Except
Posted on Nov 4, 2007 7:04 pm
menu nicklist {
Except {
mode $chan +eeeee $$1 $address(%except,1) $address(%except,2) $address(%except,3) $address(%except,4)
}
napa182
Comments: 924
 
mIRC Snippet:  Mass Except
Posted on Mar 1, 2008 12:32 am
i dont know why you would want to +e that many times for but you can also do this as well i also tossed to un -e eh im bored.. =/
Code:
menu nicklist {
  .Except ( $+ $1 $+ ) { var %x = 1 | while (%x <= 4) { mode $chan +e $address($1,%x) | inc %x } }
  .UnExcept ( $+ $1 $+ ) { var %x = 1 | while (%x <= 4) { mode $chan -e $address($1,%x) | inc %x } }
}

Please Register or Login to start posting comments.
Bottom