BIS fnc countdown: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Some wiki formatting) |
Lou Montana (talk | contribs) m (Text replacement - "{{HashLink" to "{{Link") |
||
Line 7: | Line 7: | ||
|descr= Triggers a countdown. {{Feature|Informative|The '''initial''' countdown can be accessed via [[missionNamespace]] variable '''BIS_fnc_countdown_time'''.<br> | |descr= Triggers a countdown. {{Feature|Informative|The '''initial''' countdown can be accessed via [[missionNamespace]] variable '''BIS_fnc_countdown_time'''.<br> | ||
The initial value is either ''[[serverTime]] (if set globally) or [[time]] (if set locally) + timeInSeconds''. To return the left-over time see {{ | The initial value is either ''[[serverTime]] (if set globally) or [[time]] (if set locally) + timeInSeconds''. To return the left-over time see {{Link|#Example 4}}.}} | ||
|s1= [timeInSeconds, global] call [[BIS_fnc_countdown]] | |s1= [timeInSeconds, global] call [[BIS_fnc_countdown]] | ||
Line 23: | Line 23: | ||
|r1= <nowiki/> | |r1= <nowiki/> | ||
* [[Number]]: | * [[Number]]: | ||
** If set locally: [[time]] + timeInSeconds (see {{ | ** If set locally: [[time]] + timeInSeconds (see {{Link|#Example 1}}) | ||
** If set globally [[serverTime]] + timeInSeconds (see {{ | ** If set globally [[serverTime]] + timeInSeconds (see {{Link|#Example 2}}) | ||
** Returns -1 if countdown is set to [[nil]] (see {{ | ** Returns -1 if countdown is set to [[nil]] (see {{Link|#Example 3}}) | ||
** Return left-over time (see {{ | ** Return left-over time (see {{Link|#Example 4}}) | ||
* [[Boolean]]: returns [[true]] when countdown is > 0 else [[false]] (see {{ | * [[Boolean]]: returns [[true]] when countdown is > 0 else [[false]] (see {{Link|#Example 5}}) | ||
|x1= <sqf>private _initialCountdown = [50,false] call BIS_fnc_countdown; // sets countdown to 50 seconds where function is executed</sqf> | |x1= <sqf>private _initialCountdown = [50,false] call BIS_fnc_countdown; // sets countdown to 50 seconds where function is executed</sqf> |
Revision as of 17:43, 4 January 2023
Description
Syntax
- Syntax:
- [timeInSeconds, global] call BIS_fnc_countdown
- Parameters:
- timeInSeconds - can be:
- global - Boolean: True to set it globally (Optional) Default: true
- Return Value:
Examples
- Example 1:
- Example 2:
- Example 3:
- Example 4:
- Example 5:
Additional Information
- See also:
- BIS_fnc_VRTimer
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note