ESM_fnc_callExtension
Calls ESM.dll with parameters and returns the resulting array
Input: <ARRAY>
_this select 0: _functionName <STRING>
- The function to be used within ESM.dll
_this select 1: _parameters <ARRAY>
- An array containing any key/value pair to be assigned as parameters.
[key <STRING>, value <ANY>]
Output: <ARRAY>
_this select 0: _response <BOOL>
- If the process was completed successfully
_this select 1: _returned <ARRAY>
- An array containing anything to be returned from the command. Most of the time, this will return empty
Examples
["test_function_two", []] call ESM_fnc_callExtension;
[
"test_function",
[
["count", 50],
["message", "Testing!!!"]
]
]
call ESM_fnc_callExtension;