Epoch/Sources/epoch_code/compile/missions/tasks/traderDiag_timePlease.sqf
2016-06-18 02:22:29 +01:00

13 lines
220 B
Plaintext

_hour = str(date select 3);
_min = str(date select 4);
if(count _hour < 2)then{
_hour = "0" + _hour;
};
if(count _min < 2)then{
_min = "0" + _min;
};
[format ["The time is %1:%2.",_hour, _min], 5] call Epoch_message;