BIS fnc countdown: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "code>_([a-zA-Z0-9_]+) = " to "code>private _$1 = ") |
Lou Montana (talk | contribs) m (Text replacement - "<code>\[\[private\]\] (_?[a-zA-Z0-9_]+) = \[([^\[]*)\] \[\[(call|spawn)\]\] \[\[(BI(N|S)_fnc_[a-zA-Z0-9_]+)\]\];? \{\{cc\|([^ ]+)\}\}<\/code>" to "<sqf>private $1 = [$2] $3 $4; // $6</sqf>") |
||
Line 31: | Line 31: | ||
|x1= <code>[[private]] _initialCountdown = [50,[[false]]] [[call]] [[BIS_fnc_countdown]]; {{cc|sets countdown to 50 seconds where function is executed}}</code> | |x1= <code>[[private]] _initialCountdown = [50,[[false]]] [[call]] [[BIS_fnc_countdown]]; {{cc|sets countdown to 50 seconds where function is executed}}</code> | ||
|x2= < | |x2= <sqf>private _initialCountdown = [50] call BIS_fnc_countdown; // sets countdown to 50 seconds globally</sqf> | ||
|x3= <code>[-1] [[call]] [[BIS_fnc_countdown]]; {{cc|sets ''BIS_fnc_countdown_time'' to [[nil]]}}</code> | |x3= <code>[-1] [[call]] [[BIS_fnc_countdown]]; {{cc|sets ''BIS_fnc_countdown_time'' to [[nil]]}}</code> | ||
|x4= < | |x4= <sqf>private _timeLeft = [0] call BIS_fnc_countdown; // returns the left over-time</sqf> | ||
|x5= <code>[[private]] _isTimeLeft = <noWiki>[</noWiki>[[true]]] [[call]] [[BIS_fnc_countdown]]; {{cc|returns [[true]] if countdown is greater 0}}</code> | |x5= <code>[[private]] _isTimeLeft = <noWiki>[</noWiki>[[true]]] [[call]] [[BIS_fnc_countdown]]; {{cc|returns [[true]] if countdown is greater 0}}</code> |
Revision as of 13:38, 1 July 2022
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:
private _initialCountdown = [50,false] call BIS_fnc_countdown; // sets countdown to 50 seconds where function is executed
- Example 2:
- Example 3:
[-1] call BIS_fnc_countdown; // sets BIS_fnc_countdown_time to nil
- Example 4:
- Example 5:
private _isTimeLeft = [true] call BIS_fnc_countdown; // returns true if countdown is greater 0
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