llGetGMTclock

From Second Life Wiki
Revision as of 13:13, 28 April 2007 by Lee Ponzu (talk | contribs)
Jump to navigation Jump to search

Summary

Function: float llGetGMTclock( );

Returns a float that is the time in seconds since midnight GMT. Seems to be accurate to the millisecond.

For SL time, which is the same as California time, use llGetWallclock

Examples

// Gets the number of milliseconds since midnight UTC.
integer GetGMTmsclock()
{
    string stamp = llGetTimestamp();
    return
        (integer) llGetSubString(stamp, 11, 12) * 3600000 +
        (integer) llGetSubString(stamp, 14, 15) * 60000 +
        llRound((float) llGetSubString(stamp, 17, -2) * 1000.0);
}

See Also

Functions

•  llGetWallclock Seconds since midnight PST

Deep Notes

Search JIRA for related Issues

Signature

function float llGetGMTclock();