LlGetEstateBanList
Jump to navigation
Jump to search
All Issues ~ Search JIRA for related Bugs
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
![]() |
LSL Feature Request |
The described function does not exist. This article is a feature request. |
Summary
Function: list llGetEstateBanList( integer start );REQUEST | Function ID |
0.1 | Forced Delay |
10.0 | Energy |
Returns a list (50 entries after position start) of agents (UUID) banned on the estate.
• integer | start | – | index |
start supports negative indexes.
Specification
Index | Positive | Negative |
---|---|---|
First | 0
|
-length
|
Last | length - 1
|
-1
|
Indexes
- Positive indexes count from the beginning, the first item being indexed as
0
, the last as(length - 1)
.
- Negative indexes count from the far end, the first item being indexed as
-length
, the last as-1
.
Caveats
- This function causes the script to sleep for 0.1 seconds.
- If start is out of bounds the script continues to execute without an error message.
- It is limited to returning 50 entries to keep the script from crashing. (300 * 43 bytes = 12900 bytes)
Examples
Notes
we can add, and we can remove bans - but we can't fully manage the estate ban list to its full potential. While the 300 name limit is generous, we could leverage this function to know exactly what is on the estate ban list at all times, and fully sync it up with an external database.
See Also
Articles
• | Negative Index |