LlGetLinkNumber

From Second Life Wiki

(Redirected from LSL llGetLinkNumber)
Jump to: navigation, search

Contents

Description

Function: integer llGetLinkNumber( );
139 Function ID
0.0 Delay
10.0 Energy

Returns an integer that is the link number of the prim containing the script.


0 means the prim not linked, 1 the prim is the root, 2 the prim is the first child, etc.

Caveats

  • By design may equal llGetNumberOfPrims, e.g., when prim is last, object contains multiple prims, and no sitting avatars

Examples

default
{
    state_entry()
    {
        llOwnerSay((string) llGetLinkNumber());
        llOwnerSay((string) llGetNumberOfPrims());
    }
}

See Also

Functions

•  llGetKey
•  llGetNumberOfPrims
Personal tools