OpenSimMirror/bin/assets/ScriptsAssetSet/llAcos.lsl

9 lines
152 B
Plaintext

default
{
state_entry()
{
float r = llFrand(2) - 1.0;
llOwnerSay("The arccosine of " + (string)r + " is " + llAcos(r));
}
}