ACE3/addons/common/functions/fnc_hashListSet.sqf
2015-05-14 20:06:06 +02:00

23 lines
474 B
Plaintext

//fnc_hashListSet.sqf
#include "script_component.hpp"
private ["_vals"];
PARAMS_3(_hashList,_index,_value);
ERRORDATA(3);
try {
if(VALIDHASH(_hashList)) then {
if(VALIDHASH(_value)) then {
_vals = _value select 1;
(_hashList select 1) set[_index, _vals];
} else {
ERROR("Set hash in hashlist is not valid");
};
} else {
ERROR("Input hashlist is not valid");
};
} catch {
HANDLECATCH;
};