For compare variable parameters, is there a way to do this?:
Global variable=equal to...every number except for 2,3,4 (for example)
So you need the condition to check that the variable is any number except for 2, 3 or 4, is this correct?
(variable<>2 & variable<>3 & variable<>4)=1
Develop games in your browser. Powerful, performant & highly capable.
You could create an Array object and then check the "Contains value" condition:
construct.net/en/make-games/manuals/construct-3/plugin-reference/array
If it's only a few numbers and you're only checking once then dop2000's suggestion will work. You can use "Evaluate expression" instead of "Compare variable".