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="Landmark__Notecard_Giver__Group_Inv">
<Project name="Landmark__Notecard_Giver__Group_Inv" path="Landmark__Notecard_Giver__Group_Inv\Landmark__Notecard_Giver__Group_Inv.prj" active="true"/>
</Solution>

View File

@@ -0,0 +1,6 @@
<Project name="Landmark__Notecard_Giver__Group_Inv" guid="D8DF8295-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D8DF838D-6C00-1014-B904-200204C60A89">
<Script name="Landmark__Notecard_Giver__Group_Inv_1.lsl" guid="D8DFA024-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>

View File

@@ -0,0 +1,52 @@
// :CATEGORY:Inventory Giver
// :NAME:Landmark__Notecard_Giver__Group_Inv
// :AUTHOR:mangowylder
// :CREATED:2012-10-23 18:15:59.673
// :EDITED:2013-09-18 15:38:56
// :ID:455
// :NUM:611
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Landmark__Notecard_Giver__Group_Inv
// :CODE:
// This script will give a notecard and landmark to the user that touches it.
// If the user is not in the same group as the object they will be offered to
// join the group.
// This script is written to give one notecard and one landmark.
// If you put more than one of any item in the objects contents
// only the first alphabetically sorted item will be given.
// Mango Wylder
// Globals
string gStrUUID;
GiveInventory(key vKeyToucherId)
{
string vStrNotecard = llGetInventoryName(INVENTORY_NOTECARD,0);
string vStrLandmark = llGetInventoryName(INVENTORY_LANDMARK,0);
llGiveInventory(vKeyToucherId, vStrNotecard);
llGiveInventory(vKeyToucherId, vStrLandmark);
}