This is sort of like a linden notice, only its range is limited, and its in the form of a dialog menu.
-----------------------------------
Yes I know its simple, but maybe someone can find use for it like I have.
CODE
///////////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.
}
}
}