if a == 0 or a == 2 then if b < c then --do stuff endend
Unpredictable results. Best not to mix your "ands" and "ors".A better way is like this:Code: [Select]if a == 0 or a == 2 if b < c then --do stuff endend
if a == 0 or a == 2 if b < c then --do stuff endend