The default when you add condition after condition is "and" (i think it even say so if you click "and" / "or" and read the tooltip. So, we have to add an "or" group. Anything under this will work separately to pass the condition. i == 0,3 and 4 is pretty straight forward. For the last one, I'd like to use the "Within bounds" condition, but that's locked to "<=" on both ends, so we have to add an "and" condition in the "or" group and add the last two conditions here. Dunno why I felt the need to explain this in text form, probably made things more unclear, if anything. Just watch the code, it's pretty self explanatory.
Hi, i need some help on this trigger condition, i can't figure out how to write it :(
i == 0 || i == 3 || i == 4 || (i >= 10 && i < 16)
thanks!
The default when you add condition after condition is "and" (i think it even say so if you click "and" / "or" and read the tooltip. So, we have to add an "or" group. Anything under this will work separately to pass the condition. i == 0,3 and 4 is pretty straight forward. For the last one, I'd like to use the "Within bounds" condition, but that's locked to "<=" on both ends, so we have to add an "and" condition in the "or" group and add the last two conditions here. Dunno why I felt the need to explain this in text form, probably made things more unclear, if anything. Just watch the code, it's pretty self explanatory.
@Berrala: Go
thanks, works!