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

View File

@@ -0,0 +1,76 @@
// :CATEGORY:ChatBot
// :NAME:Pandora_Chatbot
// :AUTHOR:Destiny Niles
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:38:59
// :ID:603
// :NUM:826
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// An ALICE base chatbot hosted at Pandorabots.com
//
//
// Place these two scripts in an object. The first one is the listener for you to customize and control who it listens to. The second one is the actual engine itself.
// :CODE:
string mesg;
key gOwner;
list talkers;
listen_to(key talker)
{
integer index = llListFindList( talkers, [talker] );
if ( index != -1 )
{
talkers = llDeleteSubList(talkers, index, index);
llMessageLinked(LINK_SET,0,"BYE",talker);
}
else
{
talkers = talkers + talker;
llMessageLinked(LINK_SET,0,"HI",talker);
}
}
default
{
state_entry()
{
gOwner = llGetOwner();
llListen(0,"",NULL_KEY,"");
}
on_rez(integer i)
{

View File

@@ -0,0 +1,67 @@
// :CATEGORY:ChatBot
// :NAME:Pandora_Chatbot
// :AUTHOR:Destiny Niles
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:38:59
// :ID:603
// :NUM:827
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// pandorabot script
// :CODE:
key requestid;
string botid;
string cust;
string reply;
string newreply;
integer that_begin;
integer that_end;
integer cust_begin;
string SearchAndReplace(string input, string old, string new)
{
return llDumpList2String(llParseString2List(input, [old], []), new);
}
default
{
state_entry()
{
cust="";
botid="b1e9139eee362838";
}
on_rez(integer param)
{
llResetScript();
}

View File

@@ -0,0 +1,8 @@
<Project name="Pandora_Chatbot" guid="D7E6B0F5-6C00-1014-B904-200204C60A89">
<Object name="Object" guid="D7E6B20A-6C00-1014-B904-200204C60A89">
<Script name="Pandora_Chatbot_1.lsl" guid="D7E6DA98-6C00-1014-B904-200204C60A89">
</Script>
<Script name="Pandora_Chatbot_2.lsl" guid="D7E6F0A1-6C00-1014-B904-200204C60A89">
</Script>
</Object>
</Project>