Don't click here unless you want to be banned.

LSL Wiki : Notice

HomePage :: PageIndex :: RecentChanges :: RecentlyCommented :: UserSettings :: You are ia360925.us.archive.org

**Joker Opus- Sensor Notice**


This is a script used to send a notice to anyone within the sensor range. Like an artificial linden notice.

///////////Created by Joker Opus, December///////////
default
{
    touch_start(integer num_detected)
    {
        integer i;
        llSensorRepeat("",NULL_KEY,AGENT,512,2*PI,0.001);//This scans on touch
    }
    sensor(integer count) 
    { 
        integer count = 50;
        integer i; 
        for(i=0;i<count;i++)
        {
            llDialog(llDetectedKey(i), "Hi all, I am testing this!", ["Ok"], 12345); //This is dialog, it looks like a notice, and it says "Hi all, I am testing this!" and it has an [ok] for a button, indicating the notice look. and the OK gets rid of the pop up.
        }
    }
}

Q: Can I use this anywhere I want? So if i go to a sandbox, and I want to tell everyone something, I can just use this?

A: Yes, its sensor is limited though, so you can add alot around a parcel you own, and have them all activate when you tell the mother to using llsay on a channel or something.
There is one comment on this page. [Display comments/form]