Difference between revisions of "LlGetOwnerKey"

From Second Life Wiki
Jump to navigation Jump to search
m (fixe)
Line 36: Line 36:
|also_events
|also_events
|also_articles
|also_articles
|notes
|notes=When used on an avatars key, the key of that avatar is returned again. So avatars are owned by themself.
|cat1=Owner
|cat1=Owner
|cat2=Key
|cat2=Key

Revision as of 16:14, 23 November 2008

Summary

Function: key llGetOwnerKey( key id );

Returns a key that is the owner of object id

• key id

If id is not in the same sim then id is returned.

Examples

<lsl>key owner;

default {

   state_entry()
   {
       owner = llGetOwner();
       llListen(1, "", "", "");
   }
   on_rez(integer a)
   {
       owner = llGetOwner();
   }
   listen(integer chan, string name, key id, string msg)
   {
       if(llGetOwnerKey(id) == owner)
       {//Only triggers if what spoke is the owner or if they share the same owner
           llOwnerSay(name + " has the same owner as me ^_^");
       }
   }
}</lsl>

Notes

When used on an avatars key, the key of that avatar is returned again. So avatars are owned by themself.

See Also

Functions

•  llKey2Name
•  llRequestAgentData

Deep Notes

Search JIRA for related Issues

Signature

function key llGetOwnerKey( key id );