BIS fnc selectRandom: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Generated by BIS_fnc_exportFunctionsToWiki)
 
(Added BIS_fnc_selectRandom (not sure of versions) first article created, please provide feedback)
Line 1: Line 1:
 
{{Command|=
{{Function|= Comments
____________________________________________________________________________________________
____________________________________________________________________________________________


| arma2 |= Game name
| arma2oa |=
 
|1.00|= Game version
____________________________________________________________________________________________


| <pre>/************************************************************
|1.56|=
Random Select


Parameters: array
|arg= |= MPARGUMENTS


This returns a randomly selected element from the passed array.
|eff= local |= Effects in MP
 
____________________________________________________________________________________________
Example: [1,2,3] call BIS_fnc_selectRandom
Returns: 1, 2, or 3
************************************************************/


</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
| Selects one of the arguments at random
|=
____________________________________________________________________________________________
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_selectRandom]]; --> |= Syntax
| var1 call '''BIS_fnc_selectRandom'''  |=


|p1= |= Parameter 1
|p1= var1: [[Array]] - array of values of which one will be selected at random |= PARAMETER1


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


|x1= <code></code> |=  
|x1= <code>_bestShooter <nowiki>=</nowiki> [_rento, _ben, _trit] [[call]] BIS_fnc_selectRandom;</code>|= EXAMPLE1
____________________________________________________________________________________________
____________________________________________________________________________________________


| |= See also
| [[Functions Library]] |= SEEALSO


|  |= MPBEHAVIOUR
____________________________________________________________________________________________
}}
}}


Line 44: Line 38:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Function Group: Arrays|{{uc:selectRandom}}]]
 
[[Category:Functions|{{uc:selectRandom}}]]
[[Category:ArmA_2:_Functions|ArmA_2:_Functions]]
[[Category:{{Name|arma2}}: Functions|{{uc:selectRandom}}]]
[[Category:{{Name|arma2oa}}: Functions|{{uc:selectRandom}}]]
[[Category:{{Name|tkoh}}: Functions|{{uc:selectRandom}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:selectRandom}}]]

Revision as of 18:56, 4 January 2011

Hover & click on the images for description

Description

Description:
Selects one of the arguments at random
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;

Additional Information

See also:
Functions Library

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