BIS fnc countdown: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (1 revision)
m (template:command argument fix)
(4 intermediate revisions by 3 users not shown)
Line 5: Line 5:
| arma3 |= Game name
| arma3 |= Game name


|1.00|= Game version
|1.02|= Game version
___________________________________________________________________________________________
 
| Triggers a countdown. Countdown can be accessed via [[missionNamespace]] variable '''bis_fnc_countdown_time'''|DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| <pre>/*
| [timeInSeconds,global] [[call]] '''BIS_fnc_countdown''' |SYNTAX=
 
Description:
Trigger countdown
 
Parameter(s):
0: NUMBER - countdown in seconds
1: BOOL - true to set the value globally


Returns:
|p1= timeInSeconds - [[Number]]: Length of the countdown in seconds |PARAMETER1=
NUMBER
|p2= global - [[Boolean]]: True to set it globally (Optional) Default: true |PARAMETER2=
*/
|[[Number]]: Returns approx. countdown |RETURNVALUE=
 
</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_countdown]]; --> |= Syntax
|x1= <code>_countDown = [50,false] [[call]] '''BIS_fnc_countDown''';</code> |EXAMPLE1=
 
|p1= |= Parameter 1
 
| |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code></code> |=  
||SEEALSO=
____________________________________________________________________________________________


| |= See also


}}
}}

Revision as of 15:28, 7 April 2019


Hover & click on the images for description

Description

Description:
Triggers a countdown. Countdown can be accessed via missionNamespace variable bis_fnc_countdown_time
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: Returns approx. countdown

Examples

Example 1:
_countDown = [50,false] call BIS_fnc_countDown;

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

Notes

Bottom Section