2015-01-14 21:29:52 +00:00
|
|
|
//fnc_hashListSelect.sqf
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
private ["_hashList", "_index", "_hash", "_keys", "_hashes", "_values"];
|
|
|
|
|
|
|
|
_hashList = _this select 0;
|
|
|
|
_index = _this select 1;
|
|
|
|
ERRORDATA(2);
|
|
|
|
_hash = nil;
|
|
|
|
try {
|
2015-02-19 18:14:52 +00:00
|
|
|
if(VALIDHASH(_hashList)) then {
|
|
|
|
_keys = _hashList select 0;
|
|
|
|
_hashes = _hashList select 1;
|
|
|
|
if(_index < (count _hashes)) then {
|
|
|
|
_values = _hashes select _index;
|
2015-01-14 21:29:52 +00:00
|
|
|
|
2015-02-19 18:14:52 +00:00
|
|
|
_hash = [_keys, _values, 1];
|
|
|
|
} else {
|
|
|
|
ERROR("Index of hashlist is out of range");
|
|
|
|
};
|
|
|
|
} 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
|
|
|
};
|
|
|
|
_hash;
|