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
mIRC Snippet:
Mass Except
Posted on Nov 4, 2007 1:53 pm
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 :)
Please modify :)
mIRC Snippet:
Mass Except
Posted on Nov 4, 2007 3:13 pm
Posted on Nov 4, 2007 3:13 pm
You also never had a set %except to unset.
Not sure if that really matters. xD
Not sure if that really matters. xD
mIRC Snippet:
Mass Except
Posted on Nov 4, 2007 4:01 pm
Posted on Nov 4, 2007 4:01 pm
I see what your saying jewsus. I took out my set $$1 %except by mistake
mIRC Snippet:
Mass Except
Posted on Nov 4, 2007 4:01 pm
Posted on Nov 4, 2007 4:01 pm
I see what your saying jewsus. I took out my set $$1 %except by mistake
mIRC Snippet:
Mass Except
Posted on Nov 4, 2007 6:20 pm
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)
mode $chan +eeeee %except $address(%except,1) $address(%except,2) $address(%except,3) $address(%except,4)
mIRC Snippet:
Mass Except
Posted on Nov 4, 2007 6:51 pm
Posted on Nov 4, 2007 6:51 pm
| Code: |
| set $$1 %except |
| Code: |
| set %except $$1 |
Or use a local variable:
| Code: |
| var %except = $$1 |
mIRC Snippet:
Mass Except
Posted on Nov 4, 2007 7:04 pm
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)
}
Except {
mode $chan +eeeee $$1 $address(%except,1) $address(%except,2) $address(%except,3) $address(%except,4)
}
mIRC Snippet:
Mass Except
Posted on Mar 1, 2008 12:32 am
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 } } } |







