llManageEstateAccess
Jump to navigation
Jump to search
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: integer llManageEstateAccess( integer action, key avatar );
Use to add or remove agents from the estate's agent access or ban lists or groups from the estate's group access list.
Returns a boolean (an integer) TRUE if the call was successful; FALSE if throttled, invalid action, invalid or null id or object owner is not allowed to manage the estate.
• integer | action | – | ESTATE_ACCESS_* flag | |
• key | avatar | – | avatar or group UUID |
Only works for objects owned by the Estate Owner or an Estate Manager. By default, the object owner is notified of every change made using this function. But if the owner grants PERMISSION_SILENT_ESTATE_MANAGEMENT to the script, the owner will not be notified.
action flag | V | Description |
---|---|---|
ESTATE_ACCESS_ALLOWED_AGENT_ADD | 0x4 | Add the agent to this estate's Allowed Residents list. |
ESTATE_ACCESS_ALLOWED_AGENT_REMOVE | 0x8 | Remove the agent from this estate's Allowed Residents list. |
ESTATE_ACCESS_ALLOWED_GROUP_ADD | 0x10 | Add the group to this estate's Allowed groups list. |
ESTATE_ACCESS_ALLOWED_GROUP_REMOVE | 0x20 | Remove the group from this estate's Allowed groups list. |
ESTATE_ACCESS_BANNED_AGENT_ADD | 0x40 | Add the agent to this estate's Banned residents list. |
ESTATE_ACCESS_BANNED_AGENT_REMOVE | 0x80 | Remove the agent from this estate's Banned residents list. |
Caveats
- Calls are throttled at a rate of 30 calls per 30 seconds.
- FALSE will be returned...
- if throttled,
- if object owner doesn't have power to perform action,
- if avatar is invalid or null
- If used on mainland the message "llManageEstateAccess does not work on mainland" is shouted on DEBUG_CHANNEL.
- If the object owner is not allowed to manage the estate the message "llManageEstateAccess object owner must manage estate." is shouted on DEBUG_CHANNEL. -- SRC-233
- If a legit estate manager tries to exceed the max number of entries in the list the call will return TRUE but the operation be truncated at the limit.