User talk:Toady Nakamura
Revision as of 12:57, 28 September 2012 by Toady Nakamura (talk | contribs) (saving a snippet for later)
Leave me a message !!! Toady Nakamura 23:44, 5 July 2012 (PDT)
<lsl> //Counts down from 5 to 1, then dies default {
state_entry()
{
integer index = 5;
while (index)
{
// wait a sec
llSleep(1.0);
// PUBLIC_CHANNEL has the integer value 0
llSay(PUBLIC_CHANNEL, (string)index);
--index;
}
llWhisper(0,"I am done counting now.");
}
} </lsl>