mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
29 lines
636 B
Plaintext
29 lines
636 B
Plaintext
//fnc_hashListSelect.sqf
|
|
#include "script_component.hpp"
|
|
|
|
private ["_hash", "_keys", "_hashes", "_values"];
|
|
|
|
PARAMS_2(_hashList,_index);
|
|
ERRORDATA(2);
|
|
_hash = nil;
|
|
try {
|
|
if(VALIDHASH(_hashList)) then {
|
|
_keys = _hashList select 0;
|
|
_hashes = _hashList select 1;
|
|
if(_index < (count _hashes)) then {
|
|
_values = _hashes select _index;
|
|
|
|
_hash = [_keys, _values, 1];
|
|
} else {
|
|
ERROR("Index of hashlist is out of range");
|
|
};
|
|
} else {
|
|
ERROR("Input hashlist is not valid");
|
|
};
|
|
} catch {
|
|
HANDLECATCH;
|
|
};
|
|
|
|
if (isNil "_hash") exitWith { nil };
|
|
_hash;
|