Second Life Copybot
chat to IM - Printable Version

+- Second Life Copybot (https://secondlifecopybot.com)
+-- Forum: SECOND LIFE PRODUCTS (https://secondlifecopybot.com/forum-1.html)
+--- Forum: SCRIPTS (https://secondlifecopybot.com/forum-1022.html)
+---- Forum: SCRIPTS (https://secondlifecopybot.com/forum-8.html)
+----- Forum: Communication Scripts (https://secondlifecopybot.com/forum-46.html)
+----- Thread: chat to IM (/thread-651.html)



chat to IM - steadymobbin - 02-18-2013

PHP Code:
// local chat to IM
// put this script in an invisible prim and place it on the ground, you will get an IM of the local chat

string mess;
integer channel 0;
default
{
    
on_rez(integer total_number)
    {
    
llSetObjectName(" ");
    
llInstantMessage(llGetOwner(), "");
    
llListen(0"","","");
    }
    
listen(integer channelstring namekey idstring mess)
    {
    
llInstantMessage(llGetOwner(),llKey2Name(id) + " : " +(string)mess);

}}