Set Object Permissions

31 July 2019

  • C10 - added the selection parameter.

19 May 2015

  • Release 8.12

<data Commands> Type: Corrade progressive command Command[wiki]: setobjectpermissions Description[wiki]: The setobjectpermissions command can be used to set the permissions of an object. Permissions[wiki]: interact Parameters[wiki]: group, password, item, permissions Last Changes[wiki]: Release 8.12 - range is optional and the command uses the Corrade permissions notation </data>

The setobjectpermissions command can be used to set the permissions of an object.

Command Required Parameters Required Corrade Permissions Example
setobjectpermissions group, password, item, permissions interact
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // set the next owner permission on the chair
            // to copy, transfer an no modification
            "command", "setobjectpermissions",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "item", "Chair",
            "range", 5,
            "permissions", wasURLEscape("c--mvt------------c---vtc--mvt")
        ]
    )
);
Optional Parameter Possible Value Description
range A range in meters. The spherical distance from Corrade in which to locate the item.

The value passed to the permissions key must be formatted in the Corrade permissions notation.

Notes