User talk:Toady Nakamura
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>