IN BALDUR'S GATE II...
I'm trying to create a catch-all/opposite statement for the check...
IF ~InParty("Person") !Dead("Person")~
...thus, I need to check if "Person" is not in the party OR if "Person" is in party AND dead, which would lead me to believe it's something like
IF ~OR(2) !InParty("Person") [combined check of InParty("Person") AND Dead("Person")]~
Since there's no AND() blocks, I'm not entirely sure what to do...I've gone through every combination I can think of where I only use that OR statement and rearrange the other statements (since without an OR it is an implied AND), yet I can't seem to figure it out.
There isn't some hidden, magical blanket "ELSE" statement, is there?
ALSO, even if there's a simple fix to this specific case, I'd like to know how one would go about the logic of this regardless of what actual statements are involved (i.e. how one would code IF (condition) OR (condition AND condition) no matter what the conditions are).
Thanks in advance for any insight!
Edited by Vivian, 30 November 2010 - 11:56 AM.