Difference between revisions of "LlOwnerSay"

From Second Life Wiki
Jump to navigation Jump to search
m (1023 to 1024 again *crosses fingers*)
m
Line 1: Line 1:
{{LSL_Function
{{LSL_Function/limits}}{{LSL_Function
|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

Revision as of 15:05, 12 March 2010

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 1024 bytes if msg is more than 1024 bytes long.
  • Silently fails 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(integer total_number)
   {
       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

Articles

•  Limits SL limits and constrictions

Deep Notes

Search JIRA for related Issues

Tests

• llOwnerSay Test

Signature

function void llOwnerSay( string msg );