Difference between revisions of "Rand"

From the Fallout3 GECK Wiki
Jump to navigation Jump to search
imported>Odessa
(Created page. Previous page was deleted, perhaps because script extender attribution was missing)
 
imported>Odessa
Line 12: Line 12:
   }}
   }}
  |example = float fCount
  |example = float fCount
  set fCount to Rand 1 10
  set fCount to Rand 1, 10
}}
}}
==See Also==
==See Also==
*[[GetRandomPercent]]
*[[GetRandomPercent]]
*[[NX_GetRandom]]
[[Category:Functions_(NVSE)]]
[[Category:Functions_(NVSE)]]

Revision as of 11:57, 28 June 2014

< [[::Category:Functions|Category:Functions]]

A function added by the New Vegas Script Extender.

Description

Returns a random float between specified minimum and maximum. Added by NVSE V1.6.

Syntax

[help]
(float) Rand Minimum:float Maximum:float

Example

float fCount
set fCount to Rand 1, 10

See Also