removed useless _ folders
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
<Solution name="Multiperson_online_indicator">
|
||||
<Project name="Multiperson_online_indicator" path="Multiperson_online_indicator\Multiperson_online_indicator.prj" active="true"/>
|
||||
</Solution>
|
||||
@@ -0,0 +1,6 @@
|
||||
<Project name="Multiperson_online_indicator" guid="D80A7EAC-6C00-1014-B904-200204C60A89">
|
||||
<Object name="Object" guid="D80A7FA8-6C00-1014-B904-200204C60A89">
|
||||
<Script name="Multiperson_online_indicator_1.lsl" guid="D80A9D8A-6C00-1014-B904-200204C60A89">
|
||||
</Script>
|
||||
</Object>
|
||||
</Project>
|
||||
@@ -0,0 +1,56 @@
|
||||
// :CATEGORY:Online Indicator
|
||||
// :NAME:Multiperson_online_indicator
|
||||
// :AUTHOR:Fred Kinsei
|
||||
// :CREATED:2010-01-10 05:20:56.000
|
||||
// :EDITED:2013-09-18 15:38:58
|
||||
// :ID:543
|
||||
// :NUM:739
|
||||
// :REV:1.0
|
||||
// :WORLD:Second Life
|
||||
// :DESCRIPTION:
|
||||
// Multiperson_online_indicator
|
||||
// :CODE:
|
||||
//Made By Fred Kinsei
|
||||
|
||||
//Put keys into the first list
|
||||
|
||||
//And names into the second
|
||||
|
||||
//Make sure the keys and names match up order-wise
|
||||
|
||||
list keys = ["34d58721-379d-41b3-a108-b34acafc94f5", "78cd2158-4a9f-4712-a0f2-74451bb55e2b"];
|
||||
|
||||
list names = ["Fred Kinsei", "Kharne Spyker"];
|
||||
|
||||
integer length;
|
||||
|
||||
list returns;
|
||||
|
||||
list requests;
|
||||
|
||||
default
|
||||
|
||||
{
|
||||
|
||||
state_entry()
|
||||
|
||||
{
|
||||
|
||||
length = llGetListLength(keys);
|
||||
|
||||
returns = [];
|
||||
|
||||
requests = [];
|
||||
|
||||
integer i;
|
||||
|
||||
for(i=0;i<length;i++)
|
||||
|
||||
{
|
||||
|
||||
requests += llRequestAgentData(llList2Key(keys, i), DATA_ONLINE);
|
||||
|
||||
}
|
||||
|
||||
llSetTimerEvent(10);
|
||||
|
||||
Reference in New Issue
Block a user