mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
10 lines
471 B
Plaintext
10 lines
471 B
Plaintext
private ["_player","_playerUID","_key","_message"];
|
|
_player = _this select 0;
|
|
_playerUID = if (count _this > 1) then {_this select 1} else {getPlayerUID _player};
|
|
|
|
_key = format["CHILD:803:%1:",_playerUID];
|
|
_key call server_hiveWrite;
|
|
|
|
_message = format["GARAGE: %1 (%2) maintained vehicles linked to UID: %3 @%4 %5",if (alive _player) then {name _player} else {"DeadPlayer"},getPlayerUID _player,_playerUID,mapGridPosition _player,getPosATL _player];
|
|
diag_log _message;
|