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

LSL Wiki : ExampleNotice

HomePage :: PageIndex :: RecentChanges :: RecentlyCommented :: UserSettings :: You are crawl435.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///////////
//Revised by Strife Onizuka
default
{
    touch_start(integer num_detected)
    {
        llSensor("", NULL_KEY, AGENT, 96, PI);//This scans on touch
    }
    sensor(integer count) 
    {
        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 no comment on this page. [Display comments/form]