Hi all
http://www.creationkit.com/Operator_Reference
I'm having some trouble with this kind of expression, this one doesn't work:
If A == (B || C || D)
;Do stuff
Endif
This doesn't work too:
If A == B || C || D
;Do stuff
Endif
But this one does:
If A == B || A == C || A == D
;Do stuff
Endif
Is this normal? I think the first model should work.
I appreciate input, thanks.