ACE3/addons/common/functions/fnc_hashListCreateHash.sqf

19 lines
354 B
Plaintext
Raw Normal View History

2015-01-14 21:29:52 +00:00
//fnc_hashListCreateHash.sqf
#include "script_component.hpp"
private ["_hashList", "_hashKeys"];
_hashList = _this select 0;
ERRORDATA(1);
_hashKeys = [];
try {
2015-02-19 18:14:52 +00:00
if(VALIDHASH(_hashList)) then {
_hashKeys = (_hashList select 0);
} else {
ERROR("Input hashlist is not valid");
};
2015-01-14 21:29:52 +00:00
} catch {
2015-02-19 18:14:52 +00:00
HANDLECATCH;
2015-01-14 21:29:52 +00:00
};
[_hashKeys, []];