User:chaser Zaks/sandbox
< User:Chaser Zaks
Jump to navigation
Jump to search
Revision as of 12:16, 6 September 2023 by Chaser Zaks (talk | contribs) (Replaced content with "{{DISPLAYTITLE:farts}} {{LSL_Function |inject-2={{LSL_Function/prim|id|sim=*}} |func_id=182|func_sleep=0.0|func_energy=10.0 |func=llGetOwnerKey|sort=GetOwnerKey |return_ty...")
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: key llGetOwnerKey( key id );182 | Function ID |
0.0 | Forced Delay |
10.0 | Energy |
Returns a key that is the owner of prim id
• key | id | – | prim UUID that is in the same region |
Caveats
- Returns id if id is not found in the region or is not a prim.
- Also returns id for avatars, use llGetAgentSize instead to distinguish them from prims that do not exist.
- Returns NULL_KEY if the id passed in is not a valid key
Examples
default
{
state_entry()
{
// listen to anything talking on channel 1
llListen(1, "", NULL_KEY, "");
// Type "/1 " + message (such as "/1 poke") to chat 'message' on channel 1.
}
listen(integer channel, string name, key id, string message)
{
key ownerOfThisObject = llGetOwner();
key ownerOfSpeaker = llGetOwnerKey(id);
// if whoever is talking is the owner of this object
// or if the owner of the object talking is the owner of this object
if (ownerOfSpeaker == ownerOfThisObject)
{
llOwnerSay("'" + name + "' has the same owner as me ^_^");
}
}
}
See Also
Functions
• | llKey2Name | |||
• | llRequestAgentData | |||
• | llGetObjectDetails | – | OBJECT_OWNER | |
• | llGetOwner |