So I have this for loop
public var Directions : boolean;
for (var U : int = 9; U >= 9 && U <= 11 && !Directions; U++)
but when !Directions[11] or !Directions[10, 11] it doesn’t do the loop, but lets say
!Directions[9] or !Directions[9, 10] or !Directions[9, 10, 11] it works.
I think the problem is that it reads 9 first and if that is falls it stops there, but I need it to go through the full loop, not just the first one.