ll.GetParcelDetails

ll.GetParcelDetails(Position: vector, ParcelDetails: list) : list

Returns a list of parcel details specified in the ParcelDetails list for the parcel at Position. Parameters is one or more of: PARCEL_DETAILS_NAME, _DESC, _OWNER, _GROUP, _AREA, _ID, _SEE_AVATARS. Returns a list that is the parcel details specified in ParcelDetails (in the same order) for the parcel at Position.

Example

ll.GetParcelDetails(vector(1,1,1), {})
{
  "def": "func",
  "desc": "Returns a list of parcel details specified in the ParcelDetails list for the parcel at Position.\nParameters is one or more of: PARCEL_DETAILS_NAME, _DESC, _OWNER, _GROUP, _AREA, _ID, _SEE_AVATARS.\nReturns a list that is the parcel details specified in ParcelDetails (in the same order) for the parcel at Position.",
  "energy": 10,
  "sleep": 0,
  "pure": true,
  "link": "https://wiki.secondlife.com/wiki/LlGetParcelDetails",
  "name": "GetParcelDetails",
  "signatures": [
    {
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            "list"
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "Position",
          "desc": "Location within the region.",
          "type": [
            "vector"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "ParcelDetails",
          "desc": "List of details requested for the specified parcel location.",
          "type": [
            "list"
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll