Difference between revisions of "random"
Jump to navigation
Jump to search
m |
m |
||
Line 10: | Line 10: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
− | | [[Number]] <nowiki>=</nowiki> '''random''' [[Number]] | + | | [[Number]] <nowiki>=</nowiki> '''random''' x |= Syntax |
+ | |||
+ | |p1= x: [[Number]] | ||
| [[Number]] |= Return value | | [[Number]] |= Return value |
Revision as of 14:31, 24 January 2009
Click on the images for descriptions
Introduced in
- Game:
- Operation Flashpoint
- Version:
- 1.00
Description
- Description:
- Random real value from 0 (inclusive) to x (not inclusive).
Syntax
Examples
- Example 1:
_rNumber = random 1
Additional Information
- Multiplayer:
- -
- See also:
- Math Commands
Notes
Only post proven facts here. Report bugs on the feedback tracker. Use the talk page or the forums for discussions.
Add New Note | How To
Add New Note | How To
Notes
-
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 unlikely, but possible, as ceil 0 is 0)