Chat Relay

From Second Life Wiki
Revision as of 03:35, 6 March 2007 by Grumble Loudon (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Back to Example page Back to Library page

llShout is limited to 100m and sometimes you need to send a message farther. This script is designed to resend the message without getting stuck in a loop.
To use

  1. Place in a prim
  2. Change the channel number.
  3. place them as needed changing the prim's description to a unique letter or number to set it's node name.


The concept is similar to the "path" part of an email message in that it modifies the message by adding it's name to the message.

When it hears a message it parses it to get the first field. The first field is used for performance reasons. This script currently uses the pipe symbol but you can change the field separator as needed.

It then does a string search of the path field using ",n," where n is it's number or letter. The "Path" is started with "," and the repeater adds it's number and reshouts it if it has not heard it before.

The message goes like this

pipe message
,1,pipe message
,2,1,pipe message


Trouble shooting
This script can deal with grids or loops in any direction as long as each one is uniquely named. If multiple relays exist with the same name some messages will get lost.


Improvements
The script could be improved using a string search instead of llParseString2List since it only adds it's name to the start of the message.


Chat Relay

//Chat relay
//Released into the public domain by grumble Loudon
//
// Pipe is the section separator
// commas are used to separate path ID's
//
integer g_Channel = 1234;	//change this to your channel

//********************************************************************************************
default
{
    //********************************************************************************************8
    state_entry()
    {
        
        llListen(g_Channel,"",NULL_KEY,"");        
    }
//********************************************************************************************8
    listen(integer channel, string name, key id, string message)
    {        
	//Path|address|protocol|data
        list mList = llParseStringKeepNulls(message,["|"],[]);       
        string path = llList2String( mList,0); 		//get route path

        list pathList = [];
        if (llStringLength(path) > 0)
        {
		pathList  = llParseString2List(path,[","],[]);
        };
        string MyName = llGetObjectDesc();
        if (llStringLength(MyName) > 0)		//prevent infinite loops if description is blank
	{
	        list MyNameList;
        	MyNameList += MyName;
                
	        if (llListFindList(pathList, MyNameList) == -1){   // Returns -1 if not found

	            string Msg =  MyName + "," + message;   //add me to the path
           
	            llShout(g_Channel,Msg);

	        }; //route path
	};// No description
    } // listen
    //********************************************************************************************8
}//default

See also
llShout