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-05-21 16:42:44 +00:00
|
|
|
// diag_log text format["%1 HASH HAS KEY: %2", ACE_diagTime, _this];
|
2015-01-14 21:29:52 +00:00
|
|
|
|
2015-09-19 19:33:25 +00:00
|
|
|
params ["_hash", "_key"];
|
2015-05-14 18:06:06 +00:00
|
|
|
|
2015-01-14 21:29:52 +00:00
|
|
|
ERRORDATA(2);
|
2015-12-12 15:48:54 +00:00
|
|
|
private _val = false;
|
2015-01-14 21:29:52 +00:00
|
|
|
try {
|
2015-02-19 18:14:52 +00:00
|
|
|
if(VALIDHASH(_hash)) then {
|
2015-12-12 15:48:54 +00:00
|
|
|
private _index = (_hash select 0) find _key;
|
2015-02-19 18:14:52 +00:00
|
|
|
if(_index != -1) then {
|
|
|
|
_val = true;
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
ERROR("Input hash 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
|
|
|
};
|
|
|
|
_val
|