random: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
m (Reverted edits by Heecf..... (talk) to last revision by Str) |
||
Line 1: | Line 1: | ||
{{Command|= Comments | |||
____________________________________________________________________________________________ | |||
| ofp |= Game name | |||
|1.00|= Game version | |||
____________________________________________________________________________________________ | |||
| Random real (floating point) value from 0 (inclusive) to x (not inclusive). |= Description | |||
____________________________________________________________________________________________ | |||
| [[Number]] <nowiki>=</nowiki> '''random''' x |= Syntax | |||
|p1= x: [[Number]] | |||
| [[Number]] |= Return value | |||
____________________________________________________________________________________________ | |||
|x1= <pre>_rNumber = random 1</pre> |= Example 1 | |||
____________________________________________________________________________________________ | |||
| [[Math Commands]] |= See also | |||
}} | |||
<h3 style="display:none">Notes</h3> | |||
<dl class="command_description"> | |||
<!-- Note Section BEGIN --> | |||
* Be careful using random numbers in multiplayer, each client will come up with a different result. See multiplayer tutorials for more general information about locality. | |||
* The number returned is unlikely to be a whole number.<br>To return a whole number use either '''[[round]]''', '''[[ceil]]''' or '''[[floor]]''' together with '''random''':<br> | |||
x=round(random 5) will return 0,1,2,3,4 or 5. | |||
x=floor(random 5) will return 0,1,2,3 or 4. | |||
x=ceil(random 5) will return 0, 1,2,3,4 or 5. (0 is very unlikely, but possible, as ceil 0 is 0) | |||
<!-- Note Section END --> | |||
</dl> | |||
<h3 style="display:none">Bottom Section</h3> | |||
[[Category:Scripting Commands|RANDOM]] | |||
[[Category:Scripting Commands OFP 1.96|RANDOM]] | |||
[[Category:Scripting Commands OFP 1.46|RANDOM]] | |||
[[Category:Scripting Commands ArmA|RANDOM]] | |||
[[Category:Command_Group:_Variables|{{uc:{{PAGENAME}}}}]] | |||
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]] | |||
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]] | |||
Revision as of 00:21, 21 August 2012
Description
- Description:
- Random real (floating point) value from 0 (inclusive) to x (not inclusive).
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
_rNumber = random 1
Additional Information
- See also:
- Math Commands
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
- Be careful using random numbers in multiplayer, each client will come up with a different result. See multiplayer tutorials for more general information about locality.
- The number returned is unlikely to be a whole number.
To return a whole number use either round, ceil or floor together with random:
Bottom Section
Categories:
- Scripting Commands
- Introduced with Operation Flashpoint version 1.00
- Operation Flashpoint: New Scripting Commands
- Operation Flashpoint: Scripting Commands
- Command Group: Uncategorised
- Scripting Commands OFP 1.96
- Scripting Commands OFP 1.46
- Scripting Commands ArmA
- Command Group: Variables
- Scripting Commands ArmA2
- Scripting Commands Take On Helicopters