From 35709987e7c1a5c02b75bf68c0466400213e8bb7 Mon Sep 17 00:00:00 2001 From: Pax1601 Date: Fri, 21 Apr 2023 19:10:03 +0200 Subject: [PATCH] Implemented Added date, start time, elapsed time, current time --- scripts/OlympusCommand.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/OlympusCommand.lua b/scripts/OlympusCommand.lua index 153d57d5..2dedadda 100644 --- a/scripts/OlympusCommand.lua +++ b/scripts/OlympusCommand.lua @@ -553,7 +553,10 @@ function Olympus.setMissionData(arg, time) local mission = {} mission.theatre = env.mission.theatre - mission.time = DCS.getRealTime() + mission.elapsedTime = DCS.getRealTime() + mission.time = mist.time.getDHMS(timer.getAbsTime()) + mission.startTime = env.mission.start_time + mission.date = env.mission.date -- Assemble missionData table missionData["bullseyes"] = bullseyes