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
FlipTitle/FlipTitle.sol Normal file
View File

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

View File

@@ -0,0 +1,6 @@
<Project name="FlipTitle" guid="D722A9E4-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D722AADA-6C00-1014-B904-200204C60A89">
<Script name="FlipTitle_1.lsl" guid="D722CD21-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>

View File

@@ -0,0 +1,102 @@
// :CATEGORY:HoverText
// :NAME:FlipTitle
// :AUTHOR:Anonymous
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:38:53
// :ID:322
// :NUM:430
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// FlipTitle.lsl
// :CODE:
string command = "";
string person = "";
key owner;
default
{
state_entry()
{
owner = llGetOwner();
llListen(0,"",owner,"");
}
attach(key attached)
{
if (attached != NULL_KEY)
{
llInstantMessage(owner,"To set a title: title <color name> <title text>");
llInstantMessage(owner,"To remove title: title off");
llInstantMessage(owner,"<color name> can be: white, black, red, green, blue, pink, cyan, purple, yellow, orange");
llResetScript();
}
}
listen(integer channel, string name, key id, string message)
{
list strings = llParseString2List(message,[" "],[]);
string command=llList2String(strings,0);
string string1=llList2String(strings,1);
if(command=="title")
{
vector color=<0,0,0>;
if(string1=="blue")
{
color=<0,0,1>;
}
else if(string1=="orange")
{
color=<1,0.5,0>;
}
else if(string1=="cyan")
{
color=<0,1,1>;
}
else if(string1=="pink")
{
color=<1,0,1>;
}
else if(string1=="green")
{
color=<0,1,0>;
}
else if(string1=="red")
{
color=<1,0,0>;
}
else if(string1=="white")
{
color=<1,1,1>;
}
else if(string1=="yellow")
{
color=<1,1,0.1>;
}
else if(string1=="purple")
{
color=<0.7,0,0.7>;
}
else
{
color=<0,0,0>;
}
string title = "";
integer i;
for(i=2; i<=12; i++)
{
if(llStringLength(llList2String(strings,i)))
{
title = title + llList2String(strings,i) + " ";
}
}
if(title == "off")
{
llSetText("",<0,0,0>,1.0);
} else {
llSetText(title, color, 1.0);
}
}
}
}// END //