mirror of
https://github.com/Sei-Lisa/LSL-PyOptimizer
synced 2025-07-01 15:48:21 +00:00
16 lines
468 B
Text
16 lines
468 B
Text
default
|
|
{
|
|
timer()
|
|
{
|
|
integer x = llGetNumberOfPrims();
|
|
integer y = llGetUnixTime();
|
|
llOwnerSay((string)((float)x / y));
|
|
llOwnerSay((string)((float)x / y));
|
|
llOwnerSay((string)(-(float)x / y));
|
|
llOwnerSay((string)((float)x / y));
|
|
llOwnerSay((string)(-(float)x / y));
|
|
llOwnerSay((string)(-(x + (float)x)));
|
|
llOwnerSay((string)((float)y));
|
|
llOwnerSay((string)((float)x + y));
|
|
}
|
|
}
|