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

3
Tell/Tell.sol Normal file
View File

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

View File

@@ -0,0 +1,35 @@
// :CATEGORY:Speach
// :NAME:Tell
// :AUTHOR:Ferd Frederix
// :CREATED:2013-09-06
// :EDITED:2013-09-18 15:39:06
// :ID:875
// :NUM:1235
// :REV:1
// :WORLD:Second Life
// :DESCRIPTION:
// Makes an object speak without using its name
// :CODE:
// utility to make an object speak without using the objects name
Tell (string story) {
string oldname = llGetObjectName ();
llSetObjectName ("");
llSay (0, "/me " + story);
llSetObjectName (oldname);
}
default {
state_entry()
{
Tell("This prim speaks without reveling the name of the object");
}
}

6
Tell/Tell/Tell.prj Normal file
View File

@@ -0,0 +1,6 @@
<Project name="Tell" guid="7a4d3d91-58e5-4369-bc49-4b00c406ef7f">
<Object name="Object" guid="27f1f670-6698-449c-9392-ccafddafe350" active="true">
<Script name="Script.lsl" guid="9fef9de1-4ef5-45dd-a676-42b164f934ff">
</Script>
</Object>
</Project>