DeathF0X 198 Posted September 23, 2015 Hey, is there a way to convert/escape the string into a function name ? So its logs a string error. Example: ["myFunction",["a","b"] ] call example; example = { _fnc = _this select 0; _params = _this select 1; _params call _fnc; }; Share this post Link to post Share on other sites
Heeeere's johnny! 51 Posted September 23, 2015 _params call call compile _fnc; Yes, it must be a double call, because the first call is to get the function from what the compile creates and the second is to actually call the function. You could also do _params call (missionNamespace getVariable _fnc); Share this post Link to post Share on other sites
DeathF0X 198 Posted September 23, 2015 thx i will try it when im back home, Share this post Link to post Share on other sites