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