ACE3/addons/common/functions/fnc_hashListPush.sqf

18 lines
382 B
Plaintext
Raw Normal View History

2015-01-14 21:29:52 +00:00
//fnc_hashListPush.sqf
#include "script_component.hpp"
private ["_hashList", "_value"];
_hashList = _this select 0;
_value = _this select 1;
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
};