& = and
| = or
0 = false
1 = true
condition is true .. actions run
Thanks I didn't know '&' and '|' could be used to compare more than 1 value at once.
I had a similar problem, I was using 'not equal' to compare.
I tried 'make or block' and 'value1|value2'.
The problem was the events were always triggered.
I couldn't figure out why, I even restarted C2 to make sure I didn't find a bug.
if value1 is not equal to apple.
or
if value1 is not equal to orange.
What was happening is if one isn't true the other one will be.
If value1 is apple, orange, or strawberry it will still trigger because at least one statement will always be true.
I thought about using & but a variable can't be two values at once.
I simply changed 'not equal' to 'equal' to make it work, and reorganized some of the events.
Is there any way to compare a variable to more than one value using 'not equal' that doesn't always trigger?
I couldn't think of a way. It would be useful to know if it were possible.