ll.GetNotecardLine

ll.GetNotecardLine(NotecardName: string, LineNumber: number) : uuid

Returns LineNumber from NotecardName via the dataserver event. The line index starts at zero. If the requested line is passed the end of the note-card the dataserver event will return the constant EOF string. The key returned by this function is a unique identifier which will be supplied to the dataserver event in the requested parameter.

Example

ll.GetNotecardLine('test', 0)
{
  "def": "func",
  "desc": "Returns LineNumber from NotecardName via the dataserver event. The line index starts at zero.\nIf the requested line is passed the end of the note-card the dataserver event will return the constant EOF string.\nThe key returned by this function is a unique identifier which will be supplied to the dataserver event in the requested parameter.",
  "energy": 10,
  "sleep": 0,
  "pure": false,
  "link": "https://wiki.secondlife.com/wiki/LlGetNotecardLine",
  "name": "GetNotecardLine",
  "signatures": [
    {
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            "uuid"
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "NotecardName",
          "desc": "",
          "type": [
            "string"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "LineNumber",
          "desc": "",
          "type": [
            "integer",
            "number"
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll