E.g. 0 XOR 0 = 1, 1 XOR 0 = 1
0 xor 0 = 0
0 xor 1 = 1
1 xor 1= 0
exclusive or is only true if one or the other is true, but not both
[quote:2bq3b0j5]or more specifically, 1234 xor 3210 = 2136
I'm not sure what you did there, but...
[quote:2bq3b0j5]Is there an easy way to do this in Construct?
...if it was a bitwise or or xor, no construct does not have any bitwise operators
here's a complete list of system expressions:
http://sourceforge.net/apps/mediawiki/c ... xpressions
if it was a simple exclusive or condition, you can do that by stacking comparison conditions
if a
---if [inverted] b
OR
if b
---if [inverted] a
------------do something