systemTime: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Some wiki formatting)
mNo edit summary
 
Line 10: Line 10:
|s1= [[systemTime]]
|s1= [[systemTime]]


|r1= [[Array]] in format [year, month, day, hour, minute, second, millisecond]
|r1= [[Array]] of [[Number]]s in format [year, month, day, hour, minute, second, millisecond]


|x1= <sqf>private _currentTime = systemTime;</sqf>
|x1= <sqf>private _currentTime = systemTime;</sqf>

Latest revision as of 07:40, 7 November 2023

Hover & click on the images for description

Description

Description:
Returns system time.
Groups:
Time

Syntax

Syntax:
systemTime
Return Value:
Array of Numbers in format [year, month, day, hour, minute, second, millisecond]

Examples

Example 1:
private _currentTime = systemTime;
Example 2:
systemTime apply {if (_x < 10) then {"0" + str _x} else {str _x}}; // ["2021","05","03","14","09","37","593"]
Example 3:
systemTime params ["_year", "_month", "_day", "_hour", "_minute", "_second", "_millisecond"];

Additional Information

See also:
systemTimeUTC date time dayTime diag_tickTime serverTime missionStart diag_deltaTime

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note