I'm thinking they weren't meant to be in the same program.
They are attemping to do the same thing, 2 different ways.

Quote Originally Posted by jetpr View Post
This work
Code:
        if (RPM > 3) then  
           low Estarter   
        else
           high Estarter
           pause 100
        endif
this no work
Code:
        if (RPM <= 3) then  
           high Estarter
           pause 100
           low Estarter  
        endif
In which case, the second example is simply missing the else...
Code:
        if (RPM <= 3) then  
           high Estarter
           pause 100
        else
           low Estarter  
        endif