Mass Except

By NightCrawler on Nov 04, 2007

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!

menu nicklist {
  Except { 
  set $$1 %except
  mode $chan +e %except
  mode $chan +e $address(%except,1)
  mode $chan +e $address(%except,2)
  mode $chan +e $address(%except,3)
  mode $chan +e $address(%except,4)
  unset %except
}

Comments

Sign in to comment.
napa182   -  Mar 01, 2008

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.. =/

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 } }
}
 Respond  
Korvin   -  Nov 04, 2007

menu nicklist {
Except {
mode $chan +eeeee $$1 $address(%except,1) $address(%except,2) $address(%except,3) $address(%except,4)
}

 Respond  
^silk   -  Nov 04, 2007
 set $$1 %except 

should be changed to:

 set %except $$1 

Or use a local variable:

 var %except = $$1 

Thus, you wouldn\'t need /set and /unset. Also, you don\'t check if you are an op.

 Respond  
Korvin   -  Nov 04, 2007

and thats not mass =p

 Respond  
Korvin   -  Nov 04, 2007

could be:
mode $chan +eeeee %except $address(%except,1) $address(%except,2) $address(%except,3) $address(%except,4)

 Respond  
NightCrawler   -  Nov 04, 2007

I see what your saying jewsus. I took out my set $$1 %except by mistake

 Respond  
NightCrawler   -  Nov 04, 2007

I see what your saying jewsus. I took out my set $$1 %except by mistake

 Respond  
jewsus   -  Nov 04, 2007

You also never had a set %except to unset.

Not sure if that really matters. xD

 Respond  
TropNul   -  Nov 04, 2007

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 :)

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.