llSetSitText(string text);

Replaces “Sit Here” in the object’s pie menu with text.

Passing an empty string to llSetSitText will result in it defaulting to “Sit Here”.

The text is limited to 9 characters; tab (\t) is always interpreted as 4 characters. The newline character (\n) has no effect on how the text is displayed but still counts as a character against the limit.

Note: like particles, sit text is a property of the prim, not the script. So, if a script gives a prim a sit text, and that script is deleted, the sit text remains. The only way to clear the sit text is with:

llSetSitText("");

A root prim’s sit text can’t be set from a child prim; the root prim’s sit text can only be set in the root prim. When the object is unlinked, the child prim’s previously set sit text is revealed.

Compare with llSetTouchText.