ACE3/addons/common/functions/fnc_hashListCreateHash.sqf
2015-05-14 20:06:06 +02:00

20 lines
335 B
Plaintext

//fnc_hashListCreateHash.sqf
#include "script_component.hpp"
private ["_hashKeys"];
PARAMS_1(_hashList);
ERRORDATA(1);
_hashKeys = [];
try {
if(VALIDHASH(_hashList)) then {
_hashKeys = (_hashList select 0);
} else {
ERROR("Input hashlist is not valid");
};
} catch {
HANDLECATCH;
};
[_hashKeys, []];