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

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

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

@@ -0,0 +1,6 @@
<Project name="Key_DB" guid="D805513B-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D8055231-6C00-1014-B904-200204C60A89">
<Script name="Key_DB_1.lsl" guid="D8057027-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>

View File

@@ -0,0 +1,45 @@
// :CATEGORY:Avatar Key
// :NAME:Key_DB
// :AUTHOR:Fred Kinsei
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:38:55
// :ID:418
// :NUM:574
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Key_DB
// :CODE:
//Credit to the creator:
//Made by SL resident Fred Kinsei
default
{
state_entry()
{
llListen(0, "", llGetOwner(), "");
}
listen(integer chan, string name, key id, string message)
{
if(llGetSubString(message, 0, 4) == ".key ")
{
llHTTPRequest("http://irc.gameoria.com/keydb/?a=get&pass=alwel&what="+llEscapeURL(llToLower(llGetSubString(message, 5, -1)))+"&clean=0",[HTTP_METHOD,"GET"],"");
}
}
http_response(key request_id, integer status, list metadata, string body)
{