|
Manly, what's the purpose of the semicolons?
If a,b,c are conditions, then isn't:
/something [a] [b] [c]
the same as
/something [a]
/something [b]
/something [c]
("OR")
and
/something [a,b,c] is "AND"?
I think if you're doing
/cast [a] ; [b] ; [c] Spell
Then you cast Spell iff c and not a and not b. Is that right?
|