date: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Some wiki formatting)
 
(81 intermediate revisions by 18 users not shown)
Line 1: Line 1:
[[Category:Scripting Commands|DATE]]
{{RV|type=command
[[Category:Scripting Commands ArmA|DATE]]


|game1= arma1
|version1= 1.00


|game2= arma2
|version2= 1.00


<h2 style="color:#000066"> ''''' date ''''' </h2>
|game3= arma2oa
|version3= 1.50


|game4= tkoh
|version4= 1.00


'''Operand types:'''
|game5= arma3
|version5= 0.50


'''unit''': [[Object]]
|gr1= Environment


'''section''': [[String]]
|eff= local


'''Type of returned value:'''
|descr= Return the actual in-mission date and time.


[[Nothing]]
|mp= Returns the current '''local''' (MP client) in-game date.
{{Feature|arma3|Clients' local date is [[Multiplayer Scripting#JIP Synchronisation|automatically and periodically synchronised]] with the server date.}}


'''Compatibility:'''
|s1= [[date]]


Version 2.92 required.
|r1= [[Array]] - [[Date]] format


'''Description:'''
|x1= <sqf>
// in {{arma3}}
date params ["_year", "_month", "_day", "_hours", "_minutes"];


Return the actual mission date and time as an array [year, month, day, hour, minute].
// pre {{arma3}}
private ["_now", "_year", "_month", "_day", "_hours", "_minutes"];
_now = date; // [2014,10,30,2,30] a.k.a Oct. 30th, 2:30am
_year = _now select 0;
_month = _now select 1;
_day = _now select 2;
_hours = _now select 3;
_minutes = _now select 4;
</sqf>
 
|x2= <sqf>
if (date select 3 >= 19) then // 7pm
{
hintSilent "ah, Arma sunset"; // ...cue bad guys
};
</sqf>
 
|seealso= [[setDate]] [[dateToNumber]] [[numberToDate]] [[time]] [[missionStart]] [[systemTime]] [[systemTimeUTC]]
}}
 
{{Note
|user= Lou Montana
|timestamp= 20180123233500
|text= a useful script to format the date:
<sqf>
_curDate = date;
private _ddMMyyyy = format ["%3/%2/%1",
_curDate select 0,
(if (_curDate select 1 < 10) then { "0" } else { "" }) + str (_curDate select 1),
(if (_curDate select 2 < 10) then { "0" } else { "" }) + str (_curDate select 2)
];
</sqf>
 
it can be shortened to: (no intermediary variable but more request to [[date]])
<sqf>
private _ddMMyyyy = format ["%3/%2/%1",
date select 0,
(if (date select 1 < 10) then { "0" } else { "" }) + str (date select 1),
(if (date select 2 < 10) then { "0" } else { "" }) + str (date select 2)
];
</sqf>
 
'''EDIT:''' or to
<sqf>
private _ddMMyyyy = format ["%4%5/%2%3/%1",
date select 0,
["", "0"] select (date select 1 < 10),
date select 1,
["", "0"] select (date select 2 < 10),
date select 2
];
</sqf>
}}

Latest revision as of 20:08, 8 March 2024

Hover & click on the images for description

Description

Description:
Return the actual in-mission date and time.
Multiplayer:
Returns the current local (MP client) in-game date.
Arma 3
Clients' local date is automatically and periodically synchronised with the server date.
Groups:
Environment

Syntax

Syntax:
date
Return Value:
Array - Date format

Examples

Example 1:
// in Arma 3 date params ["_year", "_month", "_day", "_hours", "_minutes"]; // pre Arma 3 private ["_now", "_year", "_month", "_day", "_hours", "_minutes"]; _now = date; // [2014,10,30,2,30] a.k.a Oct. 30th, 2:30am _year = _now select 0; _month = _now select 1; _day = _now select 2; _hours = _now select 3; _minutes = _now select 4;
Example 2:
if (date select 3 >= 19) then // 7pm { hintSilent "ah, Arma sunset"; // ...cue bad guys };

Additional Information

See also:
setDate dateToNumber numberToDate time missionStart systemTime systemTimeUTC

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
Lou Montana - c
Posted on Jan 23, 2018 - 23:35 (UTC)
a useful script to format the date:
_curDate = date; private _ddMMyyyy = format ["%3/%2/%1", _curDate select 0, (if (_curDate select 1 < 10) then { "0" } else { "" }) + str (_curDate select 1), (if (_curDate select 2 < 10) then { "0" } else { "" }) + str (_curDate select 2) ];
it can be shortened to: (no intermediary variable but more request to date)
private _ddMMyyyy = format ["%3/%2/%1", date select 0, (if (date select 1 < 10) then { "0" } else { "" }) + str (date select 1), (if (date select 2 < 10) then { "0" } else { "" }) + str (date select 2) ];
EDIT: or to
private _ddMMyyyy = format ["%4%5/%2%3/%1", date select 0, ["", "0"] select (date select 1 < 10), date select 1, ["", "0"] select (date select 2 < 10), date select 2 ];