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

View File

@@ -0,0 +1,6 @@
<Project name="HoverTextPointer" guid="8f92ffe1-a78b-447c-bd4d-3c135ac427b1">
<Object name="Invisible Object" guid="9506f466-67ab-42da-8bae-7273daa3fcf3" active="true">
<Script name="Hovertext.lsl" guid="e6adad59-48ef-4e2d-afd7-c187f62975d5">
</Script>
</Object>
</Project>

View File

@@ -0,0 +1,22 @@
// :CATEGORY:Hovertext
// :NAME:HoverTextPointer
// :AUTHOR:Ferd Frederix
// :KEYWORDS:
// :CREATED:2014-12-17 18:02:25
// :EDITED:2014-12-17
// :ID:1063
// :NUM:1706
// :REV:1
// :WORLD:Second Life
// :DESCRIPTION:
// Puts a arrow below text to point down at something
// :CODE:
default
{
state_entry()
{
string text = llGetObjectDesc();
llSetText(text + "\n█\n█\n█\n█\n█\n█\n█\n█\n█\n█\n█\n█\n█\n█\n█\n█\n▼,",<1,1,1>,1.0);
}
}