mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31 lines
395 B
Plaintext
31 lines
395 B
Plaintext
/*
|
|
* Author: ?
|
|
* ?
|
|
*
|
|
* Arguments:
|
|
* ?
|
|
*
|
|
* Return Value:
|
|
* ?
|
|
*
|
|
* Public: ?
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_hashKeys"];
|
|
|
|
params ["_hashList"];
|
|
|
|
ERRORDATA(1);
|
|
_hashKeys = [];
|
|
try {
|
|
if(VALIDHASH(_hashList)) then {
|
|
_hashKeys = (_hashList select 0);
|
|
} else {
|
|
ERROR("Input hashlist is not valid");
|
|
};
|
|
} catch {
|
|
HANDLECATCH;
|
|
};
|
|
[_hashKeys, []];
|