Difference between revisions of "LlOwnerSay"

From Second Life Wiki
Jump to navigation Jump to search
Line 8: Line 8:
|caveats=
|caveats=
*Truncates '''msg''' to 1023 bytes if '''msg''' is more than 1023 bytes long.
*Truncates '''msg''' to 1023 bytes if '''msg''' is more than 1023 bytes long.
*No longer functions when the object that the script is attached to is deeded to group.
*No longer functions when the object to which the script is attached is deeded to group.
|constants
|constants
|examples=<lsl>default
|examples=<lsl>default

Revision as of 12:00, 12 November 2008

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.
  • No longer functions when the object to which the script is attached is deeded to group.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl>default {

   touch_start()
   {
       llOwnerSay("Ouch!" );
   }
}</lsl>

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

Tests

• llOwnerSay Test

Signature

function void llOwnerSay( string msg );