Difference between revisions of "LlGetNumberOfPrims"

From Second Life Wiki
Jump to navigation Jump to search
(change to trivial complete print vs. llGetLinkNumber script from the example that was a duplicate of the first useful snippet)
m (<lsl> example & helper)
Line 9: Line 9:
|caveats=*The number of prims returned includes the count of avatars sitting on the object.
|caveats=*The number of prims returned includes the count of avatars sitting on the object.
|constants
|constants
|examples=
|examples=<lsl>default
<pre>
default
{
{
     state_entry()
     state_entry()
Line 19: Line 17:
     }
     }
}
}
</pre>
</lsl>
|helpers=<pre>
|helpers=<lsl>//Returns the number of agents on the object
//Returns the number of agents on the object
integer GetNumberOfAgents()
integer GetNumberOfAgents()
{//count avatars
{//count avatars
Line 38: Line 35:
         --a;
         --a;
     return a;
     return a;
}
}</lsl>
</pre>
|also_functions=
|also_functions=
{{LSL DefineRow||{{LSLG|llGetObjectPrimCount}}|Returns the number of prims in any object.}}
{{LSL DefineRow||{{LSLG|llGetObjectPrimCount}}|Returns the number of prims in any object.}}

Revision as of 18:15, 2 January 2008

Summary

Function: integer llGetNumberOfPrims( );

Returns an integer that is the number of prims in a link set the script is attached to.

Caveats

  • The number of prims returned includes the count of avatars sitting on the object.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl>default {

   state_entry()
   {
       llOwnerSay((string) llGetLinkNumber());
       llOwnerSay((string) llGetNumberOfPrims());
   }

}

</lsl>

Useful Snippets

<lsl>//Returns the number of agents on the object integer GetNumberOfAgents() {//count avatars

   integer a = llGetNumberOfPrims();
   integer b = a;
   while(llGetAgentSize(llGetLinkKey(a)))
       --a;
   return b - a;

}

//Returns the number of prims in the object integer GetNumberOfPrims() {//ignores avatars

   integer a = llGetNumberOfPrims();
   while(llGetAgentSize(llGetLinkKey(a)))
       --a;
   return a;

}</lsl>

See Also

Functions

•  llGetObjectPrimCount Returns the number of prims in any object.
•  llGetLinkNumber Returns the link number of the prim the script is in.

Deep Notes

Search JIRA for related Issues

Signature

function integer llGetNumberOfPrims();