mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
19 lines
330 B
Plaintext
19 lines
330 B
Plaintext
//fnc_hashListCreateHash.sqf
|
|
#include "script_component.hpp"
|
|
|
|
private ["_hashList", "_hashKeys"];
|
|
|
|
_hashList = _this select 0;
|
|
ERRORDATA(1);
|
|
_hashKeys = [];
|
|
try {
|
|
if(VALIDHASH(_hashList)) then {
|
|
_hashKeys = (_hashList select 0);
|
|
} else {
|
|
ERROR("Input hashlist is not valid");
|
|
};
|
|
} catch {
|
|
HANDLECATCH;
|
|
};
|
|
[_hashKeys, []];
|