mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
27 lines
393 B
Plaintext
27 lines
393 B
Plaintext
/*
|
|
* Author: ?
|
|
* ?
|
|
*
|
|
* Arguments:
|
|
* ?
|
|
*
|
|
* Return Value:
|
|
* ?
|
|
*
|
|
* Public: ?
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_hashList", "_value"];
|
|
|
|
ERRORDATA(2);
|
|
try {
|
|
if(VALIDHASH(_hashList)) then {
|
|
[_hashList, (count (_hashList select 1)), _value] call FUNC(hashListSet);
|
|
} else {
|
|
ERROR("Input hashlist in push not valid");
|
|
};
|
|
} catch {
|
|
HANDLECATCH;
|
|
};
|