adds drawicon3d wrapper from Hizumi and status for vflag use

This commit is contained in:
2024-02-15 15:13:04 -08:00
parent 4fb0ea9a15
commit d2758b7570
7 changed files with 90 additions and 53 deletions

View File

@@ -9,21 +9,19 @@ if (!hasInterface) exitWith {};
player setDamage 1;
private _timeWentUnconscious = player getVariable [QGVARMAIN(lastTimeKnockedOut), -1];
private _durationSpentUnconscious = diag_tickTime - _timeWentUnconscious;
private _durationSpentUnconscious = -1;
if (_timeWentUnconscious > - 1) then {
_durationSpentUnconscious = diag_tickTime - _timeWentUnconscious;
};
// log to server RPT
[
LEVEL_INFO,
QUOTE(COMPONENT),
"CHAT COMMAND RESPAWN",
[player, [[
"durationSpentUnconscious",
(if (_timeWentUnconscious > - 1) then {
_durationSpentUnconscious
} else {
-1
})
]]] call EFUNC(common,addPlayerInfoToArray)
[player, [
["durationSpentUnconscious", _durationSpentUnconscious]
]] call EFUNC(common,addPlayerInfoToArray)
] remoteExec [QEFUNC(common,log), 2];
// systemChat to all remote machines