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 - "\{\{( *)Informative( *)\|" to "{{$1Feature$2|$2Informative$2|") |
||
Line 7: | Line 7: | ||
|gr1= Missions | |gr1= Missions | ||
|descr= Triggers a countdown. {{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 [[#Example_4|Example 4]].}} | |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 [[#Example_4|Example 4]].}} | ||
|s1= [timeInSeconds, global] [[call]] '''BIS_fnc_countdown''' | |s1= [timeInSeconds, global] [[call]] '''BIS_fnc_countdown''' |
Revision as of 00:00, 7 February 2021
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:
_initialCountDown = [50,false] call BIS_fnc_countDown; // Sets countdown to 50 seconds where function is executed
- Example 2:
_initialCountDown = [50] call BIS_fnc_countDown; // Sets countdown to 50 seconds globally
- Example 3:
[-1] call BIS_fnc_countdown; // Sets BIS_fnc_countdown_time to nil
- Example 4:
_timeLeft = [0] call BIS_fnc_countdown; // Returns the left over-time
- Example 5:
_isTimeLeft = [true] call BIS_fnc_countdown; // Returns true if countdown is greater 0
Additional Information
- See also:
- See also needed
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