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

View File

@@ -0,0 +1,6 @@
<Project name="Find_Prim_by_Owner_Name__and_make_a" guid="D8BB7A80-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D8BB7B68-6C00-1014-B904-200204C60A89">
<Script name="Find_Prim_by_Owner_Name__and_make_a_1.lsl" guid="D8BB99AB-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>

View File

@@ -0,0 +1,48 @@
// :CATEGORY:Radar
// :NAME:Find_Prim_by_Owner_Name__and_make_a
// :AUTHOR:Ferd Frederix
// :CREATED:2011-10-06 13:23:16.210
// :EDITED:2013-09-18 15:38:53
// :ID:301
// :NUM:400
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Put this script into a prim. Wear the prim and fly around. If it finds any prims owned by 'avatar', it will print a link to chat that you can click on. It can only scan 96 meters, so you have to fly around to find all the prims.
// :CODE:
// Change the next line to find an avatars prims
string avatar = "Ferd Frederix";
default
{
state_entry()
{
llSensorRepeat("", NULL_KEY, ACTIVE|PASSIVE|SCRIPTED, 96, PI,2); // scan for objects within 96 meters
}
sensor(integer total_number) // total_number is the number of avatars detected.
{
integer i;
for (i = 0; i < total_number; i++)
{
list things = llGetObjectDetails( llDetectedKey(i) , [OBJECT_OWNER, OBJECT_NAME]);