mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
24 lines
645 B
Plaintext
24 lines
645 B
Plaintext
scriptName "Functions\arrays\fn_selectRandom.sqf";
|
|
/************************************************************
|
|
Random Select
|
|
By Andrew Barron
|
|
|
|
Parameters: array
|
|
|
|
This returns a randomly selected element from the passed array.
|
|
|
|
Example: [1,2,3] call BIS_fnc_selectRandom
|
|
Returns: 1, 2, or 3
|
|
************************************************************/
|
|
private["_ret"];
|
|
|
|
_ret = nil;
|
|
if(count _this > 0) then
|
|
{
|
|
_ret = (count _this) - 1; //number of elements in the array
|
|
//_ret = [0, _ret] call BIS_fnc_randomInt; //choose random index
|
|
_ret = random _ret;
|
|
_ret = _this select _ret; //get the element, return it
|
|
};
|
|
_ret
|