some timezone corrections to UTC, write readme

This commit is contained in:
2023-07-06 09:44:37 -07:00
parent ee0c28d2c8
commit c250310d58
10 changed files with 281 additions and 107 deletions

View File

@@ -40,6 +40,19 @@ AttendanceTracker setVariable ["missionContext", createHashMapFromArray [
AttendanceTracker setVariable ["allUsers", createHashMap];
AttendanceTracker setVariable ["rowIds", createHashMap];
// update the extension with the current server time to identify restarts
[
{
'AttendanceTracker' callExtension [
"updateServerTime",
[
round(diag_tickTime)
]
]
},
30
] call CBA_fnc_addPerFrameHandler;
{
if (!isServer) exitWith {};
_x params ["_ehName", "_code"];