I haven't found this anywhere so I thought I would ask about conditions in Perks work. There are AND and OR condition, but how would I write a condition like
a AND (b OR c).
Nothing more complicated than that.
Edit: Nevermind - I eventualluy found this in the Wiki which is exactly what I wanted to know.
The OR checkbox is used to determine how a Condition Item is evaluated with the ones that follow it. Consecutive ORs are treated like a single block when evaluating and have order precedence over AND. For example, the Condition Items (A AND B OR C AND D) are evaluated as (A AND (B OR C) AND D) and not ((A AND B) OR (C AND D)).
Obviously I gave up a little to soon