LlOwnerSay: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
| Line 23: | Line 23: | ||
{{LSL DefineRow||[[llInstantMessage]]|}} | {{LSL DefineRow||[[llInstantMessage]]|}} | ||
|also_events | |also_events | ||
|also_tests | |also_tests= | ||
{{LSL DefineRow|[[llOwnerSay Test]]|}} | |||
|also_articles | |also_articles | ||
|notes | |notes | ||
Revision as of 11:37, 3 November 2008
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: llOwnerSay( string msg );| 0.0 | Forced Delay |
| 10.0 | Energy |
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.
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 |