Difference between revisions of "LlOwnerSay"

From Second Life Wiki
Jump to navigation Jump to search
(file a bug report)
(Range additional info.)
Line 2: Line 2:
|func_id=292|func_sleep=0.0|func_energy=10.0
|func_id=292|func_sleep=0.0|func_energy=10.0
|func=llOwnerSay|p1_type=string|p1_name=msg
|func=llOwnerSay|p1_type=string|p1_name=msg
|func_footnote=Owner must be in the same [[region]].
|func_footnote=Owner must be in the same [[region]], although messages will continue to come through for approximately 45 seconds after leaving the region.
|func_desc=Says '''msg''' to the owner only.
|func_desc=Says '''msg''' to the owner only.
|return_text
|return_text

Revision as of 17:59, 15 October 2007

Summary

Function: llOwnerSay( string msg );

Says msg to the owner only.

• string msg

Owner must be in the same region, although messages will continue to come through for approximately 45 seconds after leaving the region.

Caveats

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