ll.RequestSimulatorData

ll.RequestSimulatorData(RegionName: string, Data: number) : uuid

Requests the specified Data about RegionName. When the specified data is available, the dataserver event is raised. Data should use one of the DATA_SIM_* constants. Returns a dataserver query ID and triggers the dataserver event when data is found.

Example

ll.RequestSimulatorData('test', 4)
{
  "def": "func",
  "desc": "Requests the specified Data about RegionName. When the specified data is available, the dataserver event is raised.\nData should use one of the DATA_SIM_* constants.\nReturns a dataserver query ID and triggers the dataserver event when data is found.",
  "energy": 10,
  "sleep": 1,
  "pure": false,
  "link": "https://wiki.secondlife.com/wiki/LlRequestSimulatorData",
  "name": "RequestSimulatorData",
  "signatures": [
    {
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            "uuid"
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "RegionName",
          "desc": "",
          "type": [
            "string"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Data",
          "desc": "",
          "type": [
            "integer",
            "number"
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll