mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
35 lines
548 B
Plaintext
35 lines
548 B
Plaintext
/*
|
|
* Author: ?
|
|
* ?
|
|
*
|
|
* Arguments:
|
|
* ?
|
|
*
|
|
* Return Value:
|
|
* ?
|
|
*
|
|
* Public: ?
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_vals"];
|
|
|
|
params ["_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;
|
|
};
|