Difference between revisions of "LlOwnerSay"

From Second Life Wiki
Jump to navigation Jump to search
(add caveat: llOwnerSay not found in 2007-08 "Linden Scripting Language Guide.html")
Line 7: Line 7:
|spec
|spec
|caveats=*Truncates '''msg''' to 1023 bytes if '''msg''' is more than 1023 bytes long.
|caveats=*Truncates '''msg''' to 1023 bytes if '''msg''' is more than 1023 bytes long.
*llOwnerSay not found in 2007-08 "Linden Scripting Language Guide.html"
|constants
|constants
|examples=<pre>
|examples=<pre>

Revision as of 05:13, 4 September 2007

Summary

Function: llOwnerSay( string msg );

Says msg to the owner only.

• string msg

Owner must be in the same region.

Caveats

  • Truncates msg to 1023 bytes if msg is more than 1023 bytes long.
  • llOwnerSay not found in 2007-08 "Linden Scripting Language Guide.html"
All Issues ~ Search JIRA for related Bugs

Examples

default {
    touch_start()
    {
        llOwnerSay("Ouch!" );
    }
}

See Also

Functions

•  llRegionSay Sends chat region wide
•  llWhisper Sends chat limited to 10 meters
•  llSay Sends chat limited to 20 meters
•  llShout Sends chat limited to 100 meters
•  llInstantMessage

Deep Notes

Search JIRA for related Issues

Signature

function void llOwnerSay( string msg );