User talk:Toady Nakamura

From Second Life Wiki
Revision as of 12:58, 28 September 2012 by Toady Nakamura (talk | contribs) (typo)
Jump to navigation Jump to search

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>