ACE3/addons/common/functions/fnc_executePersistent.sqf
2015-05-14 20:06:06 +02:00

15 lines
404 B
Plaintext

// by commy2
#include "script_component.hpp"
PARAMS_1(_target);
{
if (isNil "_x") then {
diag_log text format ["[ACE] ERROR: No argument and function for remote function. ID: %1", _forEachIndex];
} else {
if (typeName _x == "ARRAY") then {
[_x select 0, _target] call (_x select 1);
};
};
} forEach (_target getVariable ["ACE_PersistentFunctions", []]);