Re: MMF2 Build #244 (BETA)
For people who want to know how to get from
C1 AND C2 AND ( C3 OR C4 )
to
C1 AND C2 AND C3 OR C1 AND C2 AND C4
It's easy. Just replace AND by * and OR by +.
So you'd get
C1 * C2 * ( C3 + C4 )
Now apply math to it and multiply it out like you'd do with variables. After that replace * back with AND and + back with OR. Voilą you have MMF2abled your desired logical condition.
Re: MMF2 Build #244 (BETA)
I know, I mean "(" and ")", not "AND" ;)
For example,
*Condition A
+Condition B
OR
*Condition C
Could mean "When condition A is true, and Condition B or C is true" and "When Conditions A and B are true, or Condition C is true"
Not the same thing :)
Re: MMF2 Build #244 (BETA)
The build 244 has been updated. Please now use this thread. Thanks!
Re: MMF2 Build #244 (BETA)
LIJI, if there is an order of operands (as sphax pointed out), then you do not need brackets.
Just order them properly. In MMF2 AND is more powerful than OR. This means
[color:green]a AND b OR c[/color] is always [color:green](a AND b) OR c[/color]
And if you want [color:green]a AND (b OR c)[/color] you have to write [color:green]a AND b OR a AND c[/color].