ll.MapDestination

ll.MapDestination(RegionName: string, Position: vector, Direction: vector) : ()

Opens world map for avatar who touched is is wearing the script, centred on RegionName with Position highlighted. Only works for scripts attached to avatar, or during touch events. Direction currently has no effect.

Example

ll.MapDestination('test', vector(1,1,1), vector(1,1,1))
{
  "def": "func",
  "desc": "Opens world map for avatar who touched is is wearing the script, centred on RegionName with Position highlighted. Only works for scripts attached to avatar, or during touch events.\nDirection currently has no effect.",
  "energy": 10,
  "sleep": 1,
  "pure": false,
  "link": "https://wiki.secondlife.com/wiki/LlMapDestination",
  "name": "MapDestination",
  "signatures": [
    {
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            "()"
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "RegionName",
          "desc": "",
          "type": [
            "string"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Position",
          "desc": "",
          "type": [
            "vector"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "Direction",
          "desc": "",
          "type": [
            "vector"
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll