Friday, September 20, 2024 2:31:58 AM
> settings

Customize


Authenticate

> fn_handleCallback.sqf
/*
	Exile Server Manager
	www.esmbot.com
	© 2018 Exile Server Manager Team
	This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
	To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/.

	Description:
		Handles a callback request from the DLL
*/

params ["_function", ["_parameters", []]];

// Make sure the function is compiled
if (missionNameSpace getVariable [_function, ""] isEqualTo "") exitWith
{
	["fn_handleCallback", format["Function %1 called by ESM but it wasn't compiled", _function]] call ESM_fnc_log;
};

// If multiple parameters are passed into the callback, they're stored as a string
if (_parameters select [0, 1] == "[") then
{
    _parameters = parseSimpleArray(_parameters);
};

[
	"fn_handleCallback",
	format[
		"Function: %1 | ID: %2 | Data: %3 | Metadata: %4",
		_function,
		_parameters select 0,
		_parameters select 1,
		_parameters select 2
	]
] call ESM_fnc_log;

_parameters spawn (missionNamespace getVariable [_function, {}]);

true
All opinions represented herein are my own
- © 2024 itsthedevman
- build 340fbb8