llGetOwner

From Second Life Wiki
Revision as of 21:31, 23 February 2008 by Lex Neva (talk | contribs) (removed incorrect information)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Summary

Function: key llGetOwner( );

Returns a key that is the current owner of the script

Examples

<lsl>default {

   state_entry()
   {
       llInstantMessage(llGetOwner(),"Only you can hear me. Isn't that eerie.");
   }
changed(integer change){if (change & CHANGED_OWNER){llResetScript();

Deep Notes

Search JIRA for related Issues

Signature

function key llGetOwner();

}</lsl> |helpers |also_functions= |-style="vertical-align:top;" | style="color:gray;" |•  | llGetCreator | style="color:gray;" | | | |-style="vertical-align:top;" | style="color:gray;" |•  | llGetOwnerKey | style="color:gray;" | | | |-style="vertical-align:top;" | style="color:gray;" |•  | llDetectedOwner | style="color:gray;" | | | |also_tests |also_events |also_articles |notes |cat1=Owner |cat2=Object |cat3=Key |cat4 }}