llAllowInventoryDrop

From Second Life Wiki
Revision as of 22:21, 25 March 2007 by BamBam Sachertorte (talk | contribs) (more detail)
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.

Summary

Function: llAllowInventoryDrop( integer add );

Allows for all users without modify permissions to add inventory items to a prim. The user must have transfer permissions for the inventory item to be dropped. Ownership of the dropped inventory item changes to the owner of the prim and next owner permissions are applied. Scripts cannot be dropped onto a prim regardless of llAllowInventoryDrop state. If a user without modify permissions tries to drop a script into a prim that allows inventory drop then the prim will shout "Not permitted to edit this!"

• integer add boolean, If TRUE allows anyone to drop inventory on prim, FALSE revokes.

Examples

integer allow;

default
{
    touch_start(integer num)
    {
        llAllowInventoryDrop(allow = !allow);
        llOwnerSay("llAllowInventoryDrop == "+llList2String(["FALSE","TRUE"],allow));
    }
    changed(integer change)
    {
        if (change & CHANGED_ALLOWED_DROP) //note that it's & and not &&... it's bitwise!
        {
            llOwnerSay("The inventory has changed as a result of a user without mod permissions dropping an item on the prim and it being allowed by the script.");
        }
    }
}

See Also

Events

•  changed CHANGED_ALLOWED_DROP

Deep Notes

Search JIRA for related Issues

Signature

function void llAllowInventoryDrop( integer add );