BIS fnc selectRandom: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<br />" to "<br>")
Line 23: Line 23:
|p1= var1: [[Array]] - array of values of which one will be selected at random |PARAMETER1=  
|p1= var1: [[Array]] - array of values of which one will be selected at random |PARAMETER1=  


| [[Any Value]] - One of the values you passed, chosen at random<br /><br /> |RETURNVALUE=
| [[Any Value]] - One of the values you passed, chosen at random<br><br> |RETURNVALUE=


|x1= <code>_bestShooter <nowiki>=</nowiki> [_rento, _ben, _trit] [[call]] BIS_fnc_selectRandom; {{cc|returns one of the variables}}
|x1= <code>_bestShooter <nowiki>=</nowiki> [_rento, _ben, _trit] [[call]] BIS_fnc_selectRandom; {{cc|returns one of the variables}}

Revision as of 11:31, 19 March 2020

Hover & click on the images for description

Description

Description:
Selects one of the arguments at random.
Arma 3
Use selectRandom instead.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
var1 call BIS_fnc_selectRandom
Parameters:
var1: Array - array of values of which one will be selected at random
Return Value:
Any Value - One of the values you passed, chosen at random

Examples

Example 1:
_bestShooter = [_rento, _ben, _trit] call BIS_fnc_selectRandom; // returns one of the variables _bestSeries = [["halo1","halo2"],["ofp","arma2"]] call BIS_fnc_selectRandom; // returns one of the arrays

Additional Information

See also:
selectRandom

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