Set Estate Lists (Bans, Groups, Managers, Users)
| setestatelist (Commands) |
| Type | Corrade progressive command |
| Command | setestatelist |
| Description | The setestatelist command can be used to add or remove bans, groups, managers and users from the current estate. |
| Permissions | land |
| Parameters | group, password, type, action |
| Last Changes | none |
The setestatelist command can be used to add or remove bans, groups, managers and users from the current estate.
| Command | Required Parameters | Required Corrade Permissions | Example |
setestatelist | group, password, type, action | land | llInstantMessage(CORRADE,
wasKeyValueEncode(
[
// Ban the resident Spooky Resident
"command", "setestatelist",
"group", wasURLEscape(GROUP),
"password", wasURLEscape(PASSWORD),
"type", "ban",
"action", "add",
// or "agent", "69ce412b-dffc-436d-86ff-d788bfa66d9d"
"firstname", "Spooky",
"lastname", "Resident",
// From all estates
"all", "True"
]
)
);
|
| Parameter | Possible Value | Parameter | Possible Value | Parameter | Optional Parameter | Possible Value | Description |
type | ban | action | add | firstname, lastname (or agent by UUID) | all | True, False | Adds or removes an agent by name from the estate ban list, optionally banning them from all the estates of the owner. |
remove |
group | action | add | target | Adds or removes a group by name or UUID from the estate allowed list. |
remove |
manager | action | add | firstname, lastname (or agent by UUID) | Adds or removes an agent by name from the estate manager list. |
remove |
user | action | add | firstname, lastname (or agent by UUID) | Adds or removes an agent by name from the estate allowed user list |
remove |