added extract_uuid sqf function and refactored other extract info functions to handle the

This commit is contained in:
Valmo Trindade
2024-08-19 01:37:07 -03:00
parent 5b1890d0cf
commit 4f6b0e684e
4 changed files with 17 additions and 18 deletions

View File

@@ -0,0 +1,10 @@
params["_unit"];
_uuid = _unit getVariable "_atak_uid";
if (_uuid == "") then {
_uuid = "armatak" callExtension "get_uid";
_unit setVariable ["_atak_uid", _uuid];
};
_uuid