Difference between revisions of "LlGetWallclock"

From Second Life Wiki
Jump to navigation Jump to search
(EX)
Line 8: Line 8:
|caveats
|caveats
|constants
|constants
|examples
|examples=<pre>
// Sun
default
{
    state_entry()
    {
        llSetTimerEvent(0.1);
    }
   
    timer()
    {
        if(llGetWallclock() < 43200)
            llSetText("The Sun is comming! :)", <1,1,0>, 1.0);
        else
            llSetText("Goodbye Sun. :(", <1,0,0>, 1.0);
           
        llSetTimerEvent(10);
    }
}
</pre>
|helpers
|helpers
|also_functions=
|also_functions=

Revision as of 16:51, 17 May 2007