Difference between revisions of "CHANGED TELEPORT"

From Second Life Wiki
Jump to navigation Jump to search
Line 4: Line 4:
|value={{LSL Hex|0x200}}
|value={{LSL Hex|0x200}}
|desc=The avatar this object is attached to has teleported.
|desc=The avatar this object is attached to has teleported.
|examples
|examples=
<pre>
default
{
    changed(integer change) //reset script if inventory changes
    {
        if (change & CHANGED_TELEPORT) //note that it's & and not &&... it's bitwise!
        {
            llOwnerSay("The object has been teleported while attached.");
        }
    }
}
</pre>
|functions
|functions
|events=
|events=

Revision as of 19:11, 1 March 2007