User:Toady Nakamura/Count down Timer

From Second Life Wiki
< User:Toady Nakamura
Revision as of 14:32, 11 January 2016 by Toady Nakamura (talk | contribs) (add script etc.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
  • Put this script in a prim.
  • Set the countdown time in the Global variables, and touch prim to start.


// global variables can be used by all states & events in a script.
integer CountDownTime = 10;
float CountDownIncrements = 1;
integer StartTime;
integer Rounds;

// Script starts here .... 
default 
{
    touch_start(integer numbb)
    {
        llSay(0, (string)CountDownTime + " ...");
        llSetTimerEvent(CountDownIncrements);
        StartTime = llGetUnixTime(); 
    }
    
    timer() 
    {
        if (llGetUnixTime() >= StartTime +CountDownTime)
        {
            llSay(0, "Boom!");
            llSetTimerEvent(0);
        } 
        
        else 
        {
            Rounds++;
            llSay(0, (string)(CountDownTime -  Rounds) + " ...");
        }
    }
}