Attach

From Second Life Wiki
Revision as of 19:01, 23 July 2007 by Siann Beck (talk | contribs) (Semicolons)
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.

Description

Event: attach( key <span title="the avatar if attached, if not attached NULL_KEY." style="border-bottom:1px dotted; cursor:help;">id ){ ; }

Triggered when an object attaches or detaches from agent.

• key id the avatar if attached, if not attached NULL_KEY.

Examples

The following is a simplified example of the attach event. As explained above the variable id will be the key of the avatar the scripted object is attached to otherwise it will take on the value of NULL_KEY. The conditional if statement is used to determine if the value of the variable id.

default
{  
    attach(key id)
    {
        if(id)//tests if it is a valid key and not NULL_KEY
        {
            llSay(0,"I have been attached!");
        }
        else
        {
            llSay(0,"I have been detached!");
        }
    }
}

See Also

Functions

• llAttachToAvatar
• llDetachFromAvatar
• llGetAttached

Articles

• Attachment

Deep Notes

Signature

event void attach( key id );