Set Parcel List

25 February 2017

  • Release 9.157 - added.
setparcellist (Commands)
TypeCorrade progressive command
Commandsetparcellist
DescriptionThe setparcellist command can be used to set avatars on the allow or ban list of a specified parcel.
Permissionsland
Parametersgroup, password, firstname, lastname (or agent by UUID), type, action
Last ChangesRelease 9.157 - added.

The setparcellist command can be used to set avatars on the allow or ban list of a specified parcel.

Command Required Parameters Required Corrade Permissions Required Group Abilities Example
setparcellist group, password, firstname, lastname (or agent by UUID), type, action land * When setting the allow list: Parcel Access→Manage parcel Access lists
* When setting the ban list: Parcel Access→Manage parcel Ban lists
llInstantMessage(CORRADE,
    wasKeyValueEncode(
        [
            // Put the avatar "Drone Resident"
            // on the banlist of the parcel
            // underneath the point described by
            // the vector <128, 128, 0>
            "command", "setparcellist",
            "group", wasURLEscape(GROUP),
            "password", wasURLEscape(PASSWORD),
            "position", "<128, 128, 0>",
            "action", "add",
            "type", "Ban",
            "firstname", "Drone",
            "lastname", "Resident"
        ]
    )
);
Parameter Possible Value Description
type access Set the allow list.
ban Set the ban list.
both Set both the access and the ban list.
Optional Parameters Possible Value Description
position A vector. A position over a parcel, or, if not specified, the affected parcel is the one that Corrade is currently on.
region A string representing a region name. Attempt to perform the command on the specified region. Note that Corrade must be connected to that region. If in doubt, please use the getconnectedregions command to determine whether the region you want to specify is currently connected. If the region is not specified, then Corrade assumes that the region is the region that Corrade is currently on.

Notes