removed useless _ folders

This commit is contained in:
Fred Beckhusen
2015-08-09 16:54:31 -05:00
parent fde850293c
commit 948a44dfba
5204 changed files with 2425579 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
<Solution name="Auto_Set_Group_Joiner_script">
<Project name="Auto_Set_Group_Joiner_script" path="Auto_Set_Group_Joiner_script\Auto_Set_Group_Joiner_script.prj" active="true"/>
</Solution>

View File

@@ -0,0 +1,6 @@
<Project name="Auto_Set_Group_Joiner_script" guid="D8A0897A-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D8A08A76-6C00-1014-B904-200204C60A89">
<Script name="Auto_Set_Group_Joiner_script_1.lsl" guid="D8A0AC8A-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>

View File

@@ -0,0 +1,68 @@
// :CATEGORY:Group Inviter
// :NAME:Auto_Set_Group_Joiner_script
// :AUTHOR:Fred Gandt
// :CREATED:2011-01-02 23:02:06.457
// :EDITED:2013-09-18 15:38:48
// :ID:64
// :NUM:91
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// This work uses content from the Second Life® Wiki article Viewer Architecture. Copyright © 2007-2009 Linden Research, Inc. Licensed under the Creative Commons Attribution-Share Alike 3.0 Licens
// :CODE:
// V2 //
key group_key;
Function()
{
group_key = llList2Key(llGetObjectDetails(llGetKey(), [OBJECT_GROUP]), 0);
if(group_key != NULL_KEY)
llHTTPRequest("http://world.secondlife.com/group/" + ((string)group_key), [], "");
else
{
llSay(0, "\nSince you are not wearing a group tag I am not set to any group." +
"\nWear a group tag and try again." +
"\nThis script will self delete.");
llRemoveInventory(llGetScriptName());
}
}
default
{
state_entry()
{
Function();
}
on_rez(integer param)
{
Function();
}