mirror of
https://github.com/Defent/DMS_Exile.git
synced 2024-08-30 16:52:12 +00:00
26 lines
338 B
Plaintext
26 lines
338 B
Plaintext
/*
|
|
DMS_fnc_SelectRandomVal
|
|
Created by eraser1
|
|
|
|
Usage:
|
|
[
|
|
_min,
|
|
_max
|
|
] call DMS_fnc_SelectRandomVal;
|
|
|
|
Returns a random value between _min and _max.
|
|
|
|
*/
|
|
|
|
if !(params
|
|
[
|
|
"_min",
|
|
"_max"
|
|
])
|
|
exitWith
|
|
{
|
|
diag_log format ["DMS ERROR :: Calling DMS_fnc_SelectRandomVal with invalid parameters: %1",_this];
|
|
};
|
|
|
|
_min + random(_max - _min)
|