17 lines
468 B
Plaintext
17 lines
468 B
Plaintext
|
|
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));
|
||
|
|
}
|
||
|
|
}
|