2015-09-19 19:33:25 +00:00
|
|
|
/*
|
|
|
|
* Author: ?
|
|
|
|
* ?
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* ?
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* ?
|
|
|
|
*
|
|
|
|
* Public: ?
|
|
|
|
*/
|
2015-01-14 21:29:52 +00:00
|
|
|
#include "script_component.hpp"
|
|
|
|
|
2015-09-19 19:33:25 +00:00
|
|
|
params ["_hashList", "_index"];
|
|
|
|
|
2015-01-14 21:29:52 +00:00
|
|
|
ERRORDATA(2);
|
2015-12-12 15:48:54 +00:00
|
|
|
private _hash = nil;
|
2015-01-14 21:29:52 +00:00
|
|
|
try {
|
2015-02-19 18:14:52 +00:00
|
|
|
if(VALIDHASH(_hashList)) then {
|
2015-12-12 16:26:47 +00:00
|
|
|
_hashList params ["_keys", "_hashes"];
|
|
|
|
|
2015-02-19 18:14:52 +00:00
|
|
|
if(_index < (count _hashes)) then {
|
2015-12-12 15:48:54 +00:00
|
|
|
private _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
|
|
|
};
|
2015-05-15 17:45:07 +00:00
|
|
|
|
2015-05-15 19:54:02 +00:00
|
|
|
if (isNil "_hash") exitWith { nil };
|
2015-01-14 21:29:52 +00:00
|
|
|
_hash;
|