selectRandom: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame( +[0-9])?|Game [Vv]ersion( +[0-9])?|Game Version \(number surrounded by NO SPACES\)|Arguments in MP|MP[Aa]rg|Multiplayer Arguments( \("local" or "global"\))?|Effects|Execution|Effects...) |
||
Line 1: | Line 1: | ||
{{Command | {{Command | ||
|arma3 | |arma3 | ||
|1.56 | |1.56 | ||
|gr1= Arrays | |gr1= Arrays | ||
|Returns a random element from the given array. Engine solution to [[BIS_fnc_selectRandom]] | |Returns a random element from the given array. Engine solution to [[BIS_fnc_selectRandom]] | ||
|'''selectRandom''' array | |'''selectRandom''' array | ||
|p1= array: [[Array]] - array of anything | |p1= array: [[Array]] - array of anything | ||
| [[Anything]] - random selected value or [[Nothing]] if array is empty | | [[Anything]] - random selected value or [[Nothing]] if array is empty | ||
|x1= <code>_randomElement = [[selectRandom]] [1,2,3,4,5];</code> | |x1= <code>_randomElement = [[selectRandom]] [1,2,3,4,5];</code> | ||
| [[selectRandomWeighted]], [[random]], [[select]], [[selectMin]], [[selectMax]] | | [[selectRandomWeighted]], [[random]], [[select]], [[selectMin]], [[selectMax]] | ||
}} | }} |
Revision as of 11:02, 18 January 2021
Description
- Description:
- Returns a random element from the given array. Engine solution to BIS_fnc_selectRandom
- Groups:
- Arrays
Syntax
- Syntax:
- selectRandom array
- Parameters:
- array: Array - array of anything
- Return Value:
- Anything - random selected value or Nothing if array is empty
Examples
- Example 1:
_randomElement = selectRandom [1,2,3,4,5];
Additional Information
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