BIS fnc randomInt: Difference between revisions
Jump to navigation
Jump to search
Killzone Kid (talk | contribs) (call is missing from example) |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
(33 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{RV|type=function | |||
|game1= arma2 | |||
|version1= 1.00 | |||
| | |game2= arma2oa | ||
|version2= 1.50 | |||
|1.00 | |game3= tkoh | ||
|version3= 1.00 | |||
| | |game4= arma3 | ||
|version4= 0.50 | |||
|gr1= Math | |||
Returns a random integer between the two passed numbers (inclusive). | |descr= Returns a random integer between the two passed numbers (inclusive). The order of parameters doesn't matter: it can be {{hl|[min, max]}} or {{hl|[max, min]}}. | ||
|s1= [min, max] call [[BIS_fnc_randomInt]] | |||
|p1= min: [[Number]] - minimum value, included | |||
| | |p2= max: [[Number]] - maximum value, included | ||
| | |r1= [[Number]] | ||
|x1= <sqf>[1, 3] call BIS_fnc_randomInt; // will return 1, 2 or 3</sqf> | |||
|x1= < | |||
|seealso= [[BIS_fnc_randomNum]] [[BIS_fnc_arithmeticMean]] [[BIS_fnc_geometricMean]] [[BIS_fnc_nearestNum]] [[BIS_fnc_sortNum]] [[BIS_fnc_roundNum]] | |||
}} | }} | ||
Latest revision as of 23:07, 12 July 2022
Description
- Description:
- Returns a random integer between the two passed numbers (inclusive). The order of parameters doesn't matter: it can be [min, max] or [max, min].
- Execution:
- call
- Groups:
- Math
Syntax
- Syntax:
- [min, max] call BIS_fnc_randomInt
- Parameters:
- min: Number - minimum value, included
- max: Number - maximum value, included
- Return Value:
- Number
Examples
- Example 1:
Additional Information
- See also:
- BIS_fnc_randomNum BIS_fnc_arithmeticMean BIS_fnc_geometricMean BIS_fnc_nearestNum BIS_fnc_sortNum BIS_fnc_roundNum
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