BIS fnc countdown: Difference between revisions
Jump to navigation
Jump to search
m (examples) |
m (example) |
||
Line 24: | Line 24: | ||
|x1= <code>_initialCountDown = [50,[[true]]] [[call]] '''BIS_fnc_countDown''';{{cc|Sets countdown to 50 seconds globally}}</code> |EXAMPLE1= | |x1= <code>_initialCountDown = [50,[[true]]] [[call]] '''BIS_fnc_countDown''';{{cc|Sets countdown to 50 seconds globally}}</code> |EXAMPLE1= | ||
|x2= <code> | |x2= <code>_isTimeLeft = <noWiki>[</noWiki>[[true]]] [[call]] [[BIS_fnc_countdown]]; {{cc|Returns [[true]] if countdown is greater 0}}</code> |EXAMPLE2= | ||
|x3= <code>[-1] [[call]] [[BIS_fnc_countdown]]; {{cc|Sets ''bis_fnc_countdown_time'' to [[nil]]}}</code> |EXAMPLE3= | |x3= <code>[-1] [[call]] [[BIS_fnc_countdown]]; {{cc|Sets ''bis_fnc_countdown_time'' to [[nil]]}}</code> |EXAMPLE3= | ||
|x4= <code>_timeLeft = [0] [[call]] [[BIS_fnc_countdown]]; {{cc|Returns the left over-time}}</code> |EXAMPLE4= | |x4= <code>_timeLeft = [0] [[call]] [[BIS_fnc_countdown]]; {{cc|Returns the left over-time}}</code> |EXAMPLE4= |
Revision as of 08:23, 28 September 2019
Description
- Description:
- Triggers a countdown.
- Execution:
- call
- Groups:
- Uncategorised
Syntax
- Syntax:
- [timeInSeconds,global] call BIS_fnc_countdown
- Parameters:
- timeInSeconds - Number: Length of the countdown in seconds
- global - Boolean: True to set it globally (Optional) Default: true
- Return Value:
- Number:
- If set locally: time + timeInSeconds (Example 1)
- If set globally serverTime + timeInSeconds
- Returns -1 if countdown is set to nil (Example 3)
Returns true when countdown is > 0 else false (Example 2) - If set locally: time + timeInSeconds (Example 1)
Examples
- Example 1:
_initialCountDown = [50,true] call BIS_fnc_countDown;// Sets countdown to 50 seconds globally
- Example 2:
_isTimeLeft = [true] call BIS_fnc_countdown; // Returns true if countdown is greater 0
- 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
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