llGetTimestamp

From Second Life Wiki
Revision as of 21:47, 15 October 2007 by Ppaatt Lynagh (talk | contribs) (link with the Efficiency Tester and LSL_Script_Efficiency that calls this llGetTimeStamp function, also link with http://en.wikipedia.org/wiki/ISO_8601)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Summary

Function: string llGetTimestamp( );

Returns a string that is the current date and time in the UTC time zone in the format "YYYY-MM-DDThh:mm:ss.ff..fZ"

Appears to be accurate to milliseconds.

Examples

// Reset tracker
string BOOT_TIME;
default
{
    state_entry()
    {
        BOOT_TIME = llGetTimestamp(); 
    }
    
    touch_start(integer num)
    {
        llSay(PUBLIC_CHANNEL, "The last system restart was @ " + BOOT_TIME);
    }
}

See Also

Functions

•  llGetDate Same format but without the time.

Articles

•  ISO 8601
•  http://en.wikipedia.org/wiki/ISO_8601
•  Efficiency Tester
•  LSL_Script_Efficiency

Deep Notes

Search JIRA for related Issues

Signature

function string llGetTimestamp();