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

View File

@@ -0,0 +1,50 @@
// :CATEGORY:Fireworks
// :NAME:mortar_start_script
// :AUTHOR:Anonymous
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:38:57
// :ID:521
// :NUM:705
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// mortar start script.lsl
// :CODE:
integer counter = 0;
default
{
state_entry()
{
llShout(55, "**:stop");
llSetText("Click for Fireworks!", <0.0, 0.0, 1.0>, 2.0);
}
touch_start(integer total_number)
{
llShout(55, "**:start");
llShout(0,"Fireworks Show starts now!");
llSetTimerEvent(15);
}
timer()
{
counter++;
if (counter>4)
{
counter = 0;
llShout(55, "**:stop");
llSetTimerEvent(0);
}
if (counter == 1)
llShout(55, "**:blue");
if (counter == 2)
llShout(55, "**:green");
if (counter == 3)
llShout(55, "**:red");
}
}
// END //

View File

@@ -0,0 +1,6 @@
<Project name="mortar_start_script" guid="D7589401-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D75894F0-6C00-1014-B904-200204C60A89">
<Script name="mortar_start_script_1.lsl" guid="D758ACA4-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>