ll.GetParcelMaxPrims

ll.GetParcelMaxPrims(Position: vector, SimWide: number) : number

Returns the maximum number of prims allowed on the parcel at Position for a given scope. The scope may be set to an individual parcel or the combined resources of all parcels with the same ownership in the region.

Example

ll.GetParcelMaxPrims(vector(1,1,1), 7)
{
  "def": "func",
  "desc": "Returns the maximum number of prims allowed on the parcel at Position for a given scope.\nThe scope may be set to an individual parcel or the combined resources of all parcels with the same ownership in the region.",
  "energy": 10,
  "sleep": 0,
  "pure": true,
  "link": "https://wiki.secondlife.com/wiki/LlGetParcelMaxPrims",
  "name": "GetParcelMaxPrims",
  "signatures": [
    {
      "result": [
        {
          "name": "",
          "def": "result",
          "desc": "",
          "variadic": false,
          "type": [
            "number"
          ],
          "optional": false
        }
      ],
      "args": [
        {
          "def": "arg",
          "name": "Position",
          "desc": "Region coordinates (z is ignored) of parcel.",
          "type": [
            "vector"
          ],
          "variadic": false,
          "optional": false
        },
        {
          "def": "arg",
          "name": "SimWide",
          "desc": "Boolean. If FALSE then the return is the maximum prims supported by the parcel. If TRUE then it is the combined number of prims on all parcels in the region owned by the specified parcel's owner.",
          "type": [
            "integer",
            "number"
          ],
          "variadic": false,
          "optional": false
        }
      ]
    }
  ]
}

< Back to ll