Maximum Conditional Statements

Here you have some things I found out the hard way:

  1. Facer doesn’t approve conditional statements that run on (conditionals within conditionals).
  2. Facer doesn’t approve of more than 2 logical statements with 1 boolean operator inside of one conditional.
    Both above things can actually sometimes work in the editor and on few watches, but they won’t work on all watches.

If you want to have an animation of 8 images repeating each second (1 image for 125 milliseconds), you will need to use math, not logic.

First of let’s get current parts of a second:
(#Dsm#-#Ds#)
this will give you number running from 0 to 0.999
Now to conditions:
$(#Dsm#-#Ds#)>(x*0.125)&&(#Dsm#-#Ds#)<=((x+1)*0.125)?100:0$
where under x you put the number of your frame (starting from 0 and going to 7).