llGetUnixTime

From Second Life Wiki
Revision as of 16:38, 17 May 2007 by Awsoonn Rawley (talk | contribs) (EX)
Jump to navigation Jump to search

Summary

Function: integer llGetUnixTime( );

Returns an integer that is the number of seconds elapsed since 00:00 hours, Jan 1, 1970 UTC from the system clock.

Examples

// 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);
    }
}

Deep Notes

Search JIRA for related Issues

Tests

•  llGetUnixTime Conformance Test

Signature

function integer llGetUnixTime();