Add sign to Value of a timer condition

Currently it only checks if time is greater than certain value. I’d like to check if it is equal to certain value to do things only once at specific point of time or if it is smaller than certain amount to ether do things within certain bounds (timer is greater than 2 seconds, but smaller than 5) or only until timer reaches certain value.

True, I could use variable to keep track on timer and do comparisons on it but it would be against KISS principle and I’d be wasting variables.

Just invert the condition to check if the timer is less than a value. :slight_smile:
Note that checking for an exact value is always a bad idea (The timer will probably never reach this exact value) and should not be allowed so as to avoid users falling into this trap, that’s why you cannot specify a sign when testing for the value of a timer.