ll.AddToLandBanList(ID: uuid, Hours: number) : ()
Add avatar ID to the parcel ban list for the specified number of Hours. A value of 0 for Hours will add the agent indefinitely. The smallest value that Hours will accept is 0.01; anything smaller will be seen as 0. When values that small are used, it seems the function bans in approximately 30 second increments (Probably 36 second increments, as 0.01 of an hour is 36 seconds). Residents teleporting to a parcel where they are banned will be redirected to a neighbouring parcel.
ll.AddToLandBanList(uuid(<key>), 3.14)
{
"def": "func",
"desc": "Add avatar ID to the parcel ban list for the specified number of Hours.\nA value of 0 for Hours will add the agent indefinitely.\nThe smallest value that Hours will accept is 0.01; anything smaller will be seen as 0.\nWhen values that small are used, it seems the function bans in approximately 30 second increments (Probably 36 second increments, as 0.01 of an hour is 36 seconds).\nResidents teleporting to a parcel where they are banned will be redirected to a neighbouring parcel.",
"energy": 10,
"sleep": 0,
"pure": false,
"link": "https://wiki.secondlife.com/wiki/LlAddToLandBanList",
"name": "AddToLandBanList",
"signatures": [
{
"result": [
{
"name": "",
"def": "result",
"desc": "",
"variadic": false,
"type": [
"()"
],
"optional": false
}
],
"args": [
{
"def": "arg",
"name": "ID",
"desc": "Agent UUID to add to ban-list.",
"type": [
"uuid",
"string"
],
"variadic": false,
"optional": false
},
{
"def": "arg",
"name": "Hours",
"desc": "Period, in hours, to ban the avatar for.",
"type": [
"number"
],
"variadic": false,
"optional": false
}
]
}
]
}