Second Life Copybot
UUID Sensor Private ( Channel 50 ) - 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: Avatar Augmentation Scripts (https://secondlifecopybot.com/forum-51.html)
+----- Thread: UUID Sensor Private ( Channel 50 ) (/thread-901.html)



UUID Sensor Private ( Channel 50 ) - ☠ MosDef ☠ - 02-20-2013

Code:
/*
Bornslippy Ruby presents...
UUID Sensor Private ( Channel 50 )
Tags: chat, communications, detection, owner, sensor, featured, tools
Description:
License:

http://secondlife.coolminds.org
*/

default
{
    state_entry()
    {
        llListen( 50, "", llGetOwner(), "start" );
    }
    
    listen( integer _c, string _n, key _k, string _m )
    {
        llSensor("", NULL_KEY, AGENT, 92.2, TWO_PI);
    }
    
    sensor(integer _n)
    {
        string Text = "\n";
        integer x;
        for (; x<_n; ++x)
            Text += "\n" + (string) llDetectedKey(x) + " " + llDetectedName(x);
            
        llOwnerSay( Text );
    }
}