Difference between revisions of "LlGetGMTclock"

From Second Life Wiki
Jump to navigation Jump to search
(added example)
m
Line 2: Line 2:
|func_id=282|func_sleep=0.0|func_energy=10.0
|func_id=282|func_sleep=0.0|func_energy=10.0
|func=llGetGMTclock|return_type=float
|func=llGetGMTclock|return_type=float
|func_footnote=For PST use [[llGetWallclock]]
|func_footnote=For SL time, which is the same as California time, use [[llGetWallclock]]
|func_desc
|func_desc
|return_text=that is the time in seconds since midnight GMT.  Seems to be accurate to the millisecond.
|return_text=that is the time in seconds since midnight GMT.  Seems to be accurate to the millisecond.

Revision as of 13:13, 28 April 2007

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();