Difference between revisions of "LlGetRegionAgentCount"

From Second Life Wiki
Jump to navigation Jump to search
m (some readability improvements)
m (<lsl> tag to <source>)
 
(2 intermediate revisions by 2 users not shown)
Line 6: Line 6:
|caveats
|caveats
|examples=
|examples=
<lsl>
<source lang="lsl2">
default
default
{
{
Line 12: Line 12:
     {
     {
         integer numberOfAvatarsInSim = llGetRegionAgentCount();
         integer numberOfAvatarsInSim = llGetRegionAgentCount();
 
         llSay(0, "There are currently "
    //  PUBLIC_CHANNEL has the integer value 0
             + (string) numberOfAvatarsInSim + " avatars in this sim.");
 
         llSay(PUBLIC_CHANNEL, "Hello, currently there are "
             + (string)numberOfAvatarsInSim + " avatars in my sim.");
     }
     }
}
}
</lsl>
</source>
|spec
|spec
|caveats=
|caveats=
Line 33: Line 30:
|also_articles
|also_articles
|notes
|notes
|history=Introduced in {{SVN|568|rev=88085|branch=Release|anchor=file33|date=Wednesday, 21 May 2008}}
|history=
*Introduced in {{SVN|568|rev=88085|branch=Release|anchor=file33|date=Wednesday, 21 May 2008}}
*Date of Release [[ Release_Notes/Second_Life_Release/1.21 | 16-10-2008 ]]
|cat1=Region
|cat1=Region
|cat2
|cat2

Latest revision as of 02:44, 22 January 2015

Summary

Function: integer llGetRegionAgentCount( );

Returns an integer that is the number of avatars in the region.

Caveats

  • The value returned by this function is technically the average number of agents who were in the region for the past second, rounded to the nearest integer. This means that there is a slight (<1 second) delay in agent count when an agent enters or exits a region.
All Issues ~ Search JIRA for related Bugs

Examples

default
{
    touch_start(integer num_detected)
    {
        integer numberOfAvatarsInSim = llGetRegionAgentCount();
        llSay(0, "There are currently "
            + (string) numberOfAvatarsInSim + " avatars in this sim.");
    }
}

See Also

Deep Notes

History

Search JIRA for related Issues

Signature

function integer llGetRegionAgentCount();