LlOwnerSay/ru
< LlOwnerSay
Jump to navigation
Jump to search
Revision as of 01:09, 26 August 2012 by Highstaker Resident (talk | contribs) (Created page with "{{LSL_Function/ru |inject-2={{LSL_Function/limits}}{{LSL_Function/chat/ru||msg}} |func_id=292|func_sleep=0.0|func_energy=10.0 |func=llOwnerSay|p1_type=string|p1_name=msg |func_de…")
LSL Портал | | | Функции | | | События | | | Типы | | | Константы | | | Потоки | | | Библиотека Скриптов | | | Учебники |
Общая информация
Function: llOwnerSay( string msg );292 | Номер функции |
0.0 | Задержка |
10.0 | Энергия |
Отправляет сообщение, обозначенное в строке msg, только владельцу объекта.
• string | msg | – | произносимое сообщение |
Предостережения
- If msg is longer than 1023 bytes, it will be truncated to 1023 bytes.
- Silently fails ~45 seconds after the owner leaves the region the object is in.
- Silently fails when the object to which the script is attached is deeded to a group.
- Some viewers do not display llOwnerSay text when msg is empty ("").
Примеры
<lsl>default {
touch_start(integer total_number) { llOwnerSay("Ouch!" ); }}</lsl>
Полезные вырезки
<lsl> //-- llOwnerSay extension for preventing silent failures
//-- paste this code at the top of the script and replace //-- any calls to llOwnerSay below it with uOwnerSayPlus
uOwnerSayPlus( string vStrMsg ){ key owner = llGetOwner(); if (llKey2Name( owner )){ llOwnerSay( vStrMsg ); //-- single owner that the region still has a handle for }else if (llList2Key( llGetObjectDetails( llGetKey(), [OBJECT_GROUP] ), 0 ) == owner){ llWhisper( 0, "/me : " +vStrMsg ); //-- group owned, must send the message publicly }else{ llInstantMessage( owner, vStrMsg ); //-- single owner, not present, send them an IM } }</lsl>
См. также
Функции
• | 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 |
Статьи
• | Limits | – | SL limits and constrictions |