mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 15:48:21 +00:00
19 lines
226 B
Text
19 lines
226 B
Text
list out()
|
|
{
|
|
integer n = 3;
|
|
@continue;
|
|
llOwnerSay((string)n);
|
|
--n;
|
|
if (!n)
|
|
return [];
|
|
jump continue;
|
|
return [];
|
|
}
|
|
|
|
default
|
|
{
|
|
state_entry()
|
|
{
|
|
llParticleSystem(out());
|
|
}
|
|
}
|