Difference between revisions of "LlGetParcelMaxPrims"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 18: Line 18:
|constants
|constants
|examples=
|examples=
<lsl>default
<source lang="lsl2">default
{
{
     touch_start(integer total_number)
     touch_start(integer total_number)
Line 26: Line 26:
             +(string)llGetParcelMaxPrims(llGetPos(), FALSE) + " allowed.");
             +(string)llGetParcelMaxPrims(llGetPos(), FALSE) + " allowed.");
     }
     }
}</lsl>
}</source>
|helpers
|helpers
|also_functions=
|also_functions=

Revision as of 02:26, 22 January 2015

Summary

Function: integer llGetParcelMaxPrims( vector pos, integer sim_wide );

Returns an integer that is the maximum combined land impact allowed for objects on the parcel at pos.

• vector pos position in region coordinates (z component is ignored)
• integer sim_wide TRUE treats all parcels owned by this parcel owner in the sim in a single maximum, FALSE determines the max for the specified parcel

Specification

If sim_wide is...

  • FALSE then the return is the maximum land impact supported by the parcel.
  • not FALSE then the return is the total land impact supported by all land in the region owned by the parcel owner.

Caveats

  • If there is an Object Bonus for the region the value returned may be over 15000.
All Issues ~ Search JIRA for related Bugs

Examples

default
{
    touch_start(integer total_number)
    {
        llSay(0, "The total land impact of objects rezzed on this parcel is "
             +(string)llGetParcelPrimCount(llGetPos(), PARCEL_COUNT_TOTAL, FALSE) +", of "
             +(string)llGetParcelMaxPrims(llGetPos(), FALSE) + " allowed.");
    }
}

See Also

Functions

•  llGetParcelPrimCount

Deep Notes

Search JIRA for related Issues

Signature

function integer llGetParcelMaxPrims( vector pos, integer sim_wide );