Template:Needs Translation/
函数名
|
Function: integer llGetParcelMaxPrims( vector pos, integer sim_wide);
|
参数: vector pos – 区域坐标位置(忽略z分量)
integer sim_wide - TRUE以单个最大值处理sim中此包裹所有者拥有的所有包裹,FALSE确定指定包裹的最大值
|
返回值:返回一个整数,该整数是在区域坐标中的位置允许对地块上的对象的最大合并陆地影响
|
注意事项
|
如果该区域有对象奖励,则返回的值可能大于该区域的总限制。
|
示例
|
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.");
}
}
|