update logging, add netId to player info, logmissioninfo

This commit is contained in:
2024-01-30 18:24:55 -08:00
parent ac9509244f
commit 8c40b107a5
6 changed files with 42 additions and 53 deletions

View File

@@ -1,11 +1,14 @@
params [["_playerObj", objNull], ["_arrayToModify", [], [[]]]];
if (isNull _playerObj) exitWith {_arrayToModify};
{
_arrayToModify = [_arrayToModify, _x#0, _x#1] call BIS_fnc_setToPairs;
} forEach [
["playerName", name _playerObj],
["playerUID", getPlayerUID _playerObj],
["playerGroup", groupId (group _playerObj)]
["playerGroup", groupId (group _playerObj)],
["playerNetID", [_playerObj] call BIS_fnc_netId]
];
_arrayToModify;