mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 23:58:20 +00:00
20 lines
487 B
Text
20 lines
487 B
Text
default { timer() {
|
|
llParticleSystem(
|
|
[ llFrand(-5)
|
|
, llFrand(-5) > -5
|
|
, llFrand(-5) <= 0
|
|
, llFrand(-5) > 0
|
|
, llFrand(-5.)
|
|
, llFrand(-16777216)
|
|
, llFrand(-16777216.)
|
|
, llFrand(5)
|
|
, llFrand(5) < 5
|
|
, llFrand(5) >= 0
|
|
, llFrand(5) < 0
|
|
, llFrand(5.)
|
|
, llFrand(16777216)
|
|
, llFrand(16777216.)
|
|
, llFrand(33554433)
|
|
, llFrand(33554433.)
|
|
]);
|
|
}}
|