mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 23:58:20 +00:00
Just to ensure that the third part of the for loop (the updater expression list) is correctly run every iteration when 'continue' is used.
23 lines
376 B
Text
23 lines
376 B
Text
integer x;
|
|
|
|
default
|
|
{
|
|
timer()
|
|
{
|
|
x = 1;
|
|
@___for__00001;
|
|
if (x < 5)
|
|
{
|
|
{
|
|
if (x == 3)
|
|
jump J_autoGen00002;
|
|
llOwnerSay((string)x);
|
|
@J_autoGen00002;
|
|
}
|
|
{
|
|
++x;
|
|
}
|
|
jump ___for__00001;
|
|
}
|
|
}
|
|
}
|