systemTime: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " <h3 style="display:none">Bottom Section</h3>" to "")
m (Some wiki formatting)
(15 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command
{{RV|type=command


| arma3
|game1= arma3
 
|version1= 2.00
| 2.00


|gr1= Time
|gr1= Time


| Returns system time.
|descr= Returns system time.
 
| [[systemTime]]


| [[Array]] in format [year, month, day, hour, minute, second, millisecond]
|s1= [[systemTime]]


|x1= <code>_currentTime = [[systemTime]];</code>
|r1= [[Array]] in format [year, month, day, hour, minute, second, millisecond]


| [[systemTimeUTC]], [[date]], [[time]], [[daytime]], [[diag_tickTime]], [[serverTime]], [[missionStart]], [[diag_deltaTime]]
|x1= <sqf>private _currentTime = systemTime;</sqf>
}}


|x2= <sqf>systemTime apply {if (_x < 10) then {"0" + str _x} else {str _x}}; // ["2021","05","03","14","09","37","593"]</sqf>


[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
|x3= <sqf>systemTime params ["_year", "_month", "_day", "_hour", "_minute", "_second", "_millisecond"];</sqf>
{{GameCategory|arma3|Scripting Commands}}


<!-- CONTINUE Notes -->
|seealso= [[systemTimeUTC]] [[date]] [[time]] [[dayTime]] [[diag_tickTime]] [[serverTime]] [[missionStart]] [[diag_deltaTime]]
<!-- DISCONTINUE Notes -->
}}

Revision as of 13:11, 4 May 2022

Hover & click on the images for description

Description

Description:
Returns system time.
Groups:
Time

Syntax

Syntax:
systemTime
Return Value:
Array 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