Template:LSL Constants/Parcel Details: Difference between revisions
Jump to navigation
Jump to search
Added note about PARCEL_DETAILS_TP_ROUTING rules hinging on PARCEL_DETAILS_LANDING_POINT |
Emphasized that the PRIM_USED and PRIM_CAPACITY outputs report sim-wide values and added links to equivalent functions to get same-parcel-only values. |
||
| Line 49: | Line 49: | ||
{{!}}[[integer]] - boolean | {{!}}[[integer]] - boolean | ||
{{!}}- | {{!}}- | ||
{{!}}{{LSL Const|PARCEL_DETAILS_PRIM_CAPACITY|integer|7|c= | {{!}}{{LSL Const|PARCEL_DETAILS_PRIM_CAPACITY|integer|7|c=The total prim capacity on this and all same-owner parcels, sim-wide.}} | ||
{{!}}{{#var:value}} | {{!}}{{#var:value}} | ||
{{!}}{{#var:comment}} | {{!}}{{#var:comment}} | ||
See [[llGetParcelMaxPrims]] for same-parcel-only and/or sim-wide reporting. | |||
{{!}} | {{!}} | ||
{{!}}[[integer]] | {{!}}[[integer]] | ||
{{!}}- | {{!}}- | ||
{{!}}{{LSL Const|PARCEL_DETAILS_PRIM_USED|integer|8|c=The prim usage on this | {{!}}{{LSL Const|PARCEL_DETAILS_PRIM_USED|integer|8|c=The total prim usage on this and all same-owner parcels, sim-wide.}} | ||
{{!}}{{#var:value}} | {{!}}{{#var:value}} | ||
{{!}}{{#var:comment}} | {{!}}{{#var:comment}} | ||
See [[llGetParcelPrimCount]] to get prim count by parcel owner, group, temp, etc. for same-parcel-only and/or sim-wide reporting. | |||
{{!}} | {{!}} | ||
{{!}}[[integer]] | {{!}}[[integer]] | ||
Latest revision as of 14:33, 24 December 2025
| Flag | Meaning | Max Length | Return | |
|---|---|---|---|---|
| PARCEL_DETAILS_NAME | 0 | The name of the parcel. | 63 Characters | string |
| PARCEL_DETAILS_DESC | 1 | The description of the parcel. | 127 Characters | string |
| PARCEL_DETAILS_OWNER | 2 | The parcel owner's key. | (36 Characters) | key |
| PARCEL_DETAILS_GROUP | 3 | The parcel group's key. | (36 Characters) | key |
| PARCEL_DETAILS_AREA | 4 | The parcel's area, in sqm. | (5 Characters) | integer |
| PARCEL_DETAILS_ID | 5 | The parcel's key. | (36 Characters) | key |
| PARCEL_DETAILS_SEE_AVATARS | 6 | The parcel's avatar visibility setting[1] | (1 character) | integer - boolean |
| PARCEL_DETAILS_PRIM_CAPACITY | 7 | The total prim capacity on this and all same-owner parcels, sim-wide.
See llGetParcelMaxPrims for same-parcel-only and/or sim-wide reporting. |
integer | |
| PARCEL_DETAILS_PRIM_USED | 8 | The total prim usage on this and all same-owner parcels, sim-wide.
See llGetParcelPrimCount to get prim count by parcel owner, group, temp, etc. for same-parcel-only and/or sim-wide reporting. |
integer | |
| PARCEL_DETAILS_LANDING_POINT | 9 | Landing point set for this parcel, if any. | vector | |
| PARCEL_DETAILS_LANDING_LOOKAT | 10 | Look at vector set for the landing point on this parcel, if any. | vector | |
| PARCEL_DETAILS_TP_ROUTING | 11 | Teleport routing for this parcel.
Note that routing rules are only enforced if the landing point is set. |
integer | |
| PARCEL_DETAILS_FLAGS | 12 | Parcel flags set for this parcel.
See llGetParcelFlags for a listing of the flags and their meaning. |
integer | |
| PARCEL_DETAILS_SCRIPT_DANGER | 13 | Is the script in danger in the indicated parcel.
See llScriptDanger for a discussion of script danger. |
integer - boolean | |
| Max Lengths in parentheses represent how many characters required when it is typecast to a string. | ||||