llOwnerSay

From Second Life Wiki
Revision as of 01:56, 11 March 2010 by Fred Gandt (talk | contribs) (Changed max byte count to 1024. Tested against llSay and the return was identical. If I'm wrong, sorry for the bother.)
Jump to navigation Jump to search

Summary

Function: llOwnerSay( string msg );

Says msg to the owner only.

• string msg

Owner must be in the same region.

Caveats

  • Truncates msg to 1024 bytes if msg is more than 1024 bytes long.
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 );