OsGetAgents
From OpenSimulator
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())); } } | |