Blockland Wiki
Advertisement

The continue keyword causes the script to skip the remainder of the innermost loop in which it appears.

%count = 0;
while(%count++ < 8)
{
if (%count > 2) continue;
echo(%count);
}

continue

See also[]

Advertisement