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

View File

@@ -0,0 +1,6 @@
<Project name="Help_Station" guid="D72D229A-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D72D2372-6C00-1014-B904-200204C60A89">
<Script name="Help_Station_1.lsl" guid="D72D3F56-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>

View File

@@ -0,0 +1,52 @@
// :CATEGORY:Inventory Giver
// :NAME:Help_Station
// :AUTHOR:Anonymous
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:38:54
// :ID:379
// :NUM:526
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Help Station.lsl
// :CODE:
//
// Help Station
//
// Gives a note card to a person clicking on it.
//
//
vector touched_color = <1,0,0>; // The color when touched
vector normal_color = <1,1,1>; // The normal color (when not touched)
string note_name = "Yadni s Domain"; // The name of the notecard you want to give
default
{
state_entry()
{
llSetColor(normal_color, -1);
}
touch_start(integer total_number)
{
// Make sound and switch color when touched
llPlaySound("Switch", 1.0);
llSetColor(touched_color, -1);
// Find out who clicked, and give them a note card
key giver;
giver = llDetectedKey(0);
string name = llDetectedName(0);
if (giver != NULL_KEY)
{
llGiveInventory(giver, note_name);
//llEmail("philip@lindenlab.com","Yadni s Domain", name);
}
}
touch_end(integer total_number)
{
// Change the color back when click released
llSetColor(normal_color, -1);
}
}// END //