diff --git a/addons/common/fnc_waitAndExecute.sqf b/addons/common/fnc_waitAndExecute.sqf index da8c5158f..48f9d8e48 100644 --- a/addons/common/fnc_waitAndExecute.sqf +++ b/addons/common/fnc_waitAndExecute.sqf @@ -2,12 +2,15 @@ Function: CBA_fnc_waitAndExecute Description: - Executes a code once in non sched environment with a given game time delay. + Executes a code once in unscheduled environment with a given game time delay. Parameters: _function - The function you wish to execute. - _args - Parameters passed to the function executing. This will be the same array every execution. [optional] - _delay - The amount of time in seconds between executions, 0 for every frame. [optional] (default: 0) + _args - Parameters passed to the function executing. (optional) + _delay - The amount of time in seconds between executions, 0 for every frame. (optional, default: 0) + +Passed Arguments: + _this - Parameters passed by this function. Same as '_args' above. Returns: Nothing