LlSayTo
From Second Life Wiki
| Languages: |
English |
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
| | LSL Feature Request |
| The described function does not exist. This article is a feature request. |
Description
Function: llSayTo( key user, string msg );| REQUEST | Function ID |
| 0.0 | Delay |
| 10.0 | Energy |
Says the text supplied in string msg on to the avatar represented by avatar_key.
| • key | user | |||
| • string | msg |
Specification
Very similar to llOwnerSay, except for being able to specify who you are talking to. Eliminates the gridwide and time-delay aspects of llInstantMessage, as well as the offline ability.
Caveats
- Text can only be a maximum of 1024 bytes.
- Phrases spoken with llSayTo can only be heard by the designated avatar if they are in the same region.
Examples
default {
touch_start(integer total_number)
{
integer i;
for (i = 0; i < total_number; ++i)
{
llSayTo(llDetectedKey(i), "You touched me!");
}
}
}
See Also
Events
| • | listen |
Functions
| • | llListen | |||
| • | llOwnerSay | – | Sends chat to the owner only to avoid spamming the PUBLIC_CHANNEL | |
| • | llRegionSay | – | Sends chat region wide | |
| • | llWhisper | – | Sends chat limited to 10 meters | |
| • | llShout | – | Sends chat limited to 100 meters | |
| • | llInstantMessage |

