Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Need Help Please

Shayna Korobase
Registered User
Join date: 8 May 2007
Posts: 454
12-15-2008 20:02
I know this is basic but for some reason my brain is not woring tonight. I need to know what needs to be added to make this script say the name of the person that clicked it. Thank you.


default
{

touch_start(integer total_number) {

// speak out loud!
llSay(0,"has clicked me";);

}

}
Innula Zenovka
Registered User
Join date: 20 Jun 2007
Posts: 1,825
12-15-2008 20:12
CODE

default
{

touch_start(integer total_number) {

// speak out loud!
llSay(0,llDetectedName(0)+ " has clicked me");

}

}