20 lines
226 B
Plaintext
20 lines
226 B
Plaintext
|
|
list out()
|
||
|
|
{
|
||
|
|
integer n = 3;
|
||
|
|
@continue;
|
||
|
|
llOwnerSay((string)n);
|
||
|
|
--n;
|
||
|
|
if (!n)
|
||
|
|
return [];
|
||
|
|
jump continue;
|
||
|
|
return [];
|
||
|
|
}
|
||
|
|
|
||
|
|
default
|
||
|
|
{
|
||
|
|
state_entry()
|
||
|
|
{
|
||
|
|
llParticleSystem(out());
|
||
|
|
}
|
||
|
|
}
|