Difference between revisions of "Talk:Attach"

From Second Life Wiki
Jump to navigation Jump to search
(Way to distinguish detach/drop)
Line 15: Line 15:
--[[User:Hoichi Soulstar|Hoichi Soulstar]] 17:57, 19 January 2010 (PST)
--[[User:Hoichi Soulstar|Hoichi Soulstar]] 17:57, 19 January 2010 (PST)
:It never was a reliable logout event. It ran on some versions but mostly no. --[[User:Cerise Sorbet|Cerise Sorbet]] 02:32, 20 January 2010 (UTC)
:It never was a reliable logout event. It ran on some versions but mostly no. --[[User:Cerise Sorbet|Cerise Sorbet]] 02:32, 20 January 2010 (UTC)
Found a way to distinguish detach to inventory from drop:
<lsl>
default
{
    attach( key id )
    {
        if ( id == NULL_KEY )
        {
            if ( llGetLocalPos() == llGetPos() ) llOwnerSay( "Dropped" );
            else llOwnerSay( "Detached" );
        }
    }
}
</lsl>
The only case this wouldn't work would be when the avatar is at the region position
of the same vector of the local position.
--[[User:Gregory Maurer|--Gregory Maurer]] 23:57, 18 September 2010 (UTC)

Revision as of 16:57, 18 September 2010

In order for the attach() event to trigger while detaching, it must delay the detach long enough for it to process its contents.

There are a few things, such as processing time and certain functions, that will cause the detach to happen immediately while processing detach events. The next time the object is rezzed or attached, it will continue mid-event until it finishes, then begin the next event in the queue: on_rez(), then attach() (if it was attached).

What are the details of detach delay? I know that calling llSleep() while detaching will immediately stop the execution and detach the object. I've also noticed that calling llStartAnimation() and llStopAnimation() with an invalid animation will result in a script error, a script delay, and immediately stop further processing.

Is it as simple as "anything with a script delay causes immediate detachment"?

--Stickman Ingmann 20:24, 20 June 2008 (PDT)

I would have said that if the event took longer then 0.1 (I'm guessing) seconds to run then it would pause execution of the event and detach. -- Strife Onizuka 06:38, 21 June 2008 (PDT)


I'm noticing that even with attach not doing much, it does not run at all when an avatar is logging out. Is this a new and permenant behaviour? --Hoichi Soulstar 17:57, 19 January 2010 (PST)

It never was a reliable logout event. It ran on some versions but mostly no. --Cerise Sorbet 02:32, 20 January 2010 (UTC)

Found a way to distinguish detach to inventory from drop: <lsl> default {

   attach( key id )
   {
       if ( id == NULL_KEY )
       {
           if ( llGetLocalPos() == llGetPos() ) llOwnerSay( "Dropped" );
           else llOwnerSay( "Detached" );
       }
   }

} </lsl> The only case this wouldn't work would be when the avatar is at the region position of the same vector of the local position. ----Gregory Maurer 23:57, 18 September 2010 (UTC)