ACE3/addons/common/functions/fnc_hashListPush.sqf

27 lines
393 B
Plaintext
Raw Normal View History

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-09-19 19:33:25 +00:00
params ["_hashList", "_value"];
2015-01-14 21:29:52 +00:00
ERRORDATA(2);
try {
2015-02-19 18:14:52 +00:00
if(VALIDHASH(_hashList)) then {
[_hashList, (count (_hashList select 1)), _value] call FUNC(hashListSet);
} else {
ERROR("Input hashlist in push 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
};