I want the conditions of a perk to work like this:
IfDoingThisThing AND HasKeyWordA OR HasKeyWordB, then apply this perk.
IfDoingThisThing None == 1.00 AND
IfHAsKeyword KeyWordA == 1.00 OR
IfHAsKeyword KeyWordB == 1.00 AND?
But when reading up on Operators in Papyrus scripts, it says that if the first AND is True and the OR is true, it does not proceed to the rest of the statement. This implies that the above will not work.
So how does it work in the CK?
Should it be like this?
IfDoingThisThing None == 1.00 AND
IfHAsKeyword KeyWordA == 1.00 AND
IfHAsKeyword KeyWordB == 1.00 OR
Or something else?
Cheers!
~.~