Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Sensor for only one avi

neohiei Malick
Registered User
Join date: 20 Jan 2007
Posts: 5
02-12-2008 06:23
Hello guys,
I'm lookin for this script >>>

//integer running;

default
{
state_entry()
{
// running = FALSE:
// llSetTimerEvent(0.0);
llSensorRepeat("","",AGENT,5,2*PI,5);
}

sensor(integer n)
{
llSensorRemove();
// running = TRUE;
// llSetTimerEvent(120);
string name = llKey2Name(llDetectedKey(0));
//llSleep(30);
llSay(0,"Happy birthday to you!";);
llSleep(5.0);
llSay(0,"Happy birthday to you!";);
llSleep(5.0);
llSay(0,"Happy birthday to you Neo!";);
llSleep(5.0);
llSay(0,"Happy birthday to youuuuuuuuu!";);
llSleep(5.0);

}

// timer()
// {
//
// }
}

I wanted to say that to someone... example only for me... I don't have UUID, I just have my name, how do I have to make to make this script only working with neohiei Malick's avatar???
Thanks a lot! and by the thanks for all answers I had :)
Void Singer
Int vSelf = Sing(void);
Join date: 24 Sep 2005
Posts: 6,973
02-12-2008 06:46
CODE

llSensorRepeat( "neohiei Malick",
"ab127936-4a68-4912-8da9-d729316ff8d4",
AGENT,
5.0,
PI,
5.0);


key provided by new search, just search for the av name, go to the page with their name, and the key is listed at the bottom as the end of the http reference...

or use a web browser and
http://secondlife.com/app/search/search.php?q=world.secondlife.com/resident/%20intitle:"insert name"
_____________________
|
| . "Cat-Like Typing Detected"
| . This post may contain errors in logic, spelling, and
| . grammar known to the SL populace to cause confusion
|
| - Please Use PHP tags when posting scripts/code, Thanks.
| - Can't See PHP or URL Tags Correctly? Check Out This Link...
| -
neohiei Malick
Registered User
Join date: 20 Jan 2007
Posts: 5
02-12-2008 07:48
Thank you so much Void, you are awesome :P