removed useless _ folders
This commit is contained in:
3
Tell/Tell.sol
Normal file
3
Tell/Tell.sol
Normal file
@@ -0,0 +1,3 @@
|
||||
<Solution name="Tell">
|
||||
<Project name="Tell" path="Tell\Tell.prj" active="true"/>
|
||||
</Solution>
|
||||
35
Tell/Tell/Object/Script.lsl
Normal file
35
Tell/Tell/Object/Script.lsl
Normal 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
6
Tell/Tell/Tell.prj
Normal 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>
|
||||
Reference in New Issue
Block a user