WHILE..END and REPEAT..UNTIL loops require at least one conditional command or the constants True or False but none were found.
WHILE..END
REPEAT..UNTIL
True
False
Possible solutions: fulfill the loop syntax with a conditional command or True or False:
while // error, a condition missing wait 0 end while true // OK wait 0 end
Last updated 5 years ago