OsGetAgents
From OpenSimulator
(Difference between revisions)
Line 18: | Line 18: | ||
} | } | ||
}</source> | }</source> | ||
+ | |||
+ | |||
+ | [[Category:OSSL]] |
Revision as of 08:41, 19 November 2010
list osGetAgents()
Returns a list of all the agents names in the region.
// // Example of osGetAgents. // default { state_entry() { // Demo-Script } touch_start(integer total_number) { llSay (0, "Agents in sim: "+ llList2CSV(osGetAgents())); } }