[OBSOLETE] [BETA MILESTONE 1] CoRE (Community's own Rules Engine)

If you have a very complex situation, you can always use individual actions applied to a series of OR’d conditions or condition groups:

IF
  A >>> when true do this
  OR
  B >>> when true do that
  OR
  (
    C
    AND
    D
  ) >>> when true do these

etc.

This construction works like a switch case - only one branch is executed:

    IF
      A >>> when true do this
      ELSE IF
      B >>> when true do that
      ELSE IF
      (
        C
        AND
        D
      ) >>> when true do these