2015-01-14 21:29:52 +00:00
|
|
|
//fnc_hashListSet.sqf
|
|
|
|
#include "script_component.hpp"
|
|
|
|
|
|
|
|
private ["_hashList", "_index", "_value", "_vals"];
|
|
|
|
|
|
|
|
_hashList = _this select 0;
|
|
|
|
_index = _this select 1;
|
|
|
|
_value = _this select 2;
|
|
|
|
ERRORDATA(3);
|
|
|
|
try {
|
2015-02-19 18:14:52 +00:00
|
|
|
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");
|
|
|
|
};
|
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
|
|
|
};
|