YENGcontinue

From OpenSimulator

Revision as of 15:03, 16 March 2021 by Djphil (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Continue allows to skip into next step on do...while, while and for loops.

Make sure to add yoptions; to the second line of the script, usually line number 1 starting from 0.
for(integer i = 0; i < 5; i++)
{
    if(i == 3) // skip 3
        continue;
    doSomething(i);
}
Personal tools
General
About This Wiki