ll.GetExperienceDetails

ll.GetExperienceDetails (ExperienceID: uuid) -> list

Returns a list with the following Experience properties: [Experience Name, Owner ID, Group ID, Experience ID, State, State Message]. State is an integer corresponding to one of the constants XP_ERROR_... and State Message is the string returned by llGetExperienceErrorMessage for that integer.

Example

ll.GetExperienceDetails(uuid(<key>))
Raw function spec json
{
  "def": "func",
  "desc": "Returns a list with the following Experience properties: [Experience Name, Owner ID, Group ID, Experience ID, State, State Message]. State is an integer corresponding to one of the constants XP_ERROR_... and State Message is the string returned by llGetExperienceErrorMessage for that integer.",
  "energy": 10,
  "sleep": 0,
  "must_use": true,
  "link": "https://wiki.secondlife.com/wiki/LlGetExperienceDetails",
  "private": false,
  "takesSelf": false,
  "name": "GetExperienceDetails",
  "signatures": [
    {
      "def": "signature",
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            {
              "def": "simple",
              "value": "list"
            }
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "ExperienceID",
          "desc": "May be NULL_KEY to retrieve the details for the script's Experience",
          "type": [
            {
              "def": "simple",
              "value": "uuid"
            },
            {
              "def": "simple",
              "value": "string"
            }
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll