I have two variables, var1 and var2. I want to trigger an event only when var1 is 50 pixel higher than var2. I tried to use the compare variable event and typed var1 > var2+50 but it doesn't work. I tried with brackets, var1 > (var2 + 50) but it didn't work either. What's wrong?