ll.GetObjectDetails

ll.GetObjectDetails(ID: uuid, Parameters: list) : list

Returns a list of object details specified in the Parameters list for the object or avatar in the region with key ID. Parameters are specified by the OBJECT_* constants.

Example

ll.GetObjectDetails(uuid(<key>), {})
{
  "def": "func",
  "desc": "Returns a list of object details specified in the Parameters list for the object or avatar in the region with key ID.\nParameters are specified by the OBJECT_* constants.",
  "energy": 10,
  "sleep": 0,
  "pure": true,
  "link": "https://wiki.secondlife.com/wiki/LlGetObjectDetails",
  "name": "GetObjectDetails",
  "signatures": [
    {
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            "list"
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "ID",
          "desc": "Prim or avatar UUID that is in the same region.",
          "type": [
            "uuid",
            "string"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Parameters",
          "desc": "List of OBJECT_* flags.",
          "type": [
            "list"
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll