OsGetAgents

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m (some format conversions)
Line 1: Line 1:
{{osslfunc|
+
{{osslfunc
threat_level = None
+
|threat_level=None
|
+
|function_syntax=list osGetAgents()  
function_syntax = <source lang="lsl">
+
|ossl_example=<source lang="lsl">
list osGetAgents()  
+
</source>
+
|
+
ossl_example = <source lang="lsl">
+
 
//
 
//
 
// Example of osGetAgents.
 
// Example of osGetAgents.
Line 21: Line 17:
 
     }
 
     }
 
}</source>
 
}</source>
|  
+
|description=Returns a list of all the agents names in the region.  
additional_info = Returns a list of all the agents names in the region.  
+
 
|
 
|
 
}}
 
}}

Revision as of 21:32, 1 July 2011

list osGetAgents()
Returns a list of all the agents names in the region.
Threat Level None
Permissions No permissions specified
Extra Delay No function delay specified
Example(s)
//
// Example of osGetAgents.
//
default
{
    state_entry()
    {
        // Demo-Script 
    }
    touch_start(integer total_number)
    {
        llSay (0, "Agents in sim: "+ llList2CSV(osGetAgents()));
    }
}
Personal tools
General
About This Wiki