< operator (SDL script)
This operator tests for the first condition being less than the second condition in a conditional statement.
%if %getvar "MyNumber" > 0 %then
"MyNumber is positive"
%else
%if %getvar "MyNumber" < 0 %then
"MyNumber is negative"
%else
"MyNumber is zero"
%endif
%endif