Add this action to handle variables:
"Increase/Decrease if lower/higher"
I can remember hundreds of times when I had to create events like
- Action happens: Set Var = 10
- If Var > 0 : Substract 1 from Var
- If Var < 0 : Add 1 to Var
Which could be replaced by:
- Action happens: Set Var = 10
- Every tick: Add 1 to Var if lower than 0, substract 1 from Var if greater than 0