mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
28 lines
628 B
Plaintext
28 lines
628 B
Plaintext
/*
|
|
* Author: PabstMirror
|
|
* Executes code after setting are initilized.
|
|
*
|
|
* Argument:
|
|
* 0: Code to execute <CODE>
|
|
* 1: Parameters to run the code with <ANY>
|
|
*
|
|
* Return value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [{if (GVAR(setting) then {x} else {y};}, []] call ace_common_fnc_runAfterSettingsInit
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_func", "_params"];
|
|
|
|
if (GVAR(settingsInitFinished)) then {
|
|
//Setting Already Finished, Direct Run the code
|
|
_params call _func;
|
|
} else {
|
|
//Waiting on settings, throw it on the delayed run array
|
|
GVAR(runAtSettingsInitialized) pushBack [_func, _params];
|
|
};
|