ll.ReturnObjectsByOwner

ll.ReturnObjectsByOwner (ID: uuid, Scope: number) -> number

Return objects based upon their owner and a scope of parcel, parcel owner, or region. Requires the PERMISSION_RETURN_OBJECTS permission and that the script owner owns the parcel the returned objects are in, or is an estate manager or region owner.

Example

ll.ReturnObjectsByOwner(uuid(<key>), 3.14)
Raw function spec json
{
  "def": "func",
  "desc": "Return objects based upon their owner and a scope of parcel, parcel owner, or region.\nRequires the PERMISSION_RETURN_OBJECTS permission and that the script owner owns the parcel the returned objects are in, or is an estate manager or region owner.",
  "energy": 10,
  "sleep": 0,
  "must_use": false,
  "link": "https://wiki.secondlife.com/wiki/LlReturnObjectsByOwner",
  "private": false,
  "takesSelf": false,
  "name": "ReturnObjectsByOwner",
  "signatures": [
    {
      "def": "signature",
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            {
              "def": "simple",
              "value": "number"
            }
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "ID",
          "desc": "Object owner's UUID.",
          "type": [
            {
              "def": "simple",
              "value": "uuid"
            },
            {
              "def": "simple",
              "value": "string"
            }
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Scope",
          "desc": "",
          "type": [
            {
              "def": "simple",
              "value": "number"
            }
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll