Difference between revisions of "Attach"

From Second Life Wiki
Jump to navigation Jump to search
m (Trying to fix Attach showing up under the "S". (Part 1 of 2))
m (Trying to fix Attach showing up under the "S". (Part 2 of 2))
Line 33: Line 33:
{{LSL DefineRow|[[llDetachFromAvatar]]}}
{{LSL DefineRow|[[llDetachFromAvatar]]}}
{{LSL DefineRow|[[llGetAttached]]}}
{{LSL DefineRow|[[llGetAttached]]}}
|also_articles
|also_articles={{LSL DefineRow|{{LSLGC|Attachment}}}}
|also_footer
|also_footer
|notes
|notes
|mode
|mode
|deprecated
|deprecated
|cat1
|cat1=Attachment
|cat2
|cat2
|cat3
|cat3
|cat4}}
|cat4}}

Revision as of 15:43, 17 September 2007

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 );