LlGetUnixTime: Difference between revisions
Jump to navigation
Jump to search
Void Singer (talk | contribs) m formatted example |
mNo edit summary |
||
| Line 4: | Line 4: | ||
|func_footnote | |func_footnote | ||
|func_desc | |func_desc | ||
|return_text=that is the number of seconds elapsed since 00:00 hours, Jan 1, 1970 UTC from the system clock. | |return_text=that is the number of seconds elapsed since 00:00 hours, Jan 1, 1970 {{Wikipedia|Coordinated_Universal_Time|UTC}} from the system clock. | ||
|spec | |spec | ||
|caveats=*{{Wikipedia|Year_2038_problem}} | |caveats=*{{Wikipedia|Year_2038_problem}} | ||
Revision as of 08:10, 7 June 2009
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: integer llGetUnixTime( );| 0.0 | Forced Delay |
| 10.0 | Energy |
Returns an integer that is the number of seconds elapsed since 00:00 hours, Jan 1, 1970
UTC from the system clock.
Caveats
Examples
<lsl> // Reset tracker integer BOOT_TIME; default {
state_entry()
{
BOOT_TIME = llGetUnixTime();
llSetTimerEvent(0.1);
}
timer()
{
llSetText((string)(llGetUnixTime() - BOOT_TIME) + " Seconds since boot.\n\n ", <1,0,0>, 1.0);
llSetTimerEvent(1);
}
}
</lsl>