User talk:Toady Nakamura
Leave me a message !!! Toady Nakamura 23:44, 5 July 2012 (PDT)
<lsl> //Counts down from 5 to 1, then can do something else default {
state_entry()
{
integer count = 5;
while (count)
{
llSleep(1.0);// wait a sec
llSay(PUBLIC_CHANNEL, (string)count); // PUBLIC_CHANNEL has the integer value 0
--index;
}
llWhisper(0,"I am done counting now.");
}
} </lsl>