Difference between revisions of "Random"

From Wiki
Jump to: navigation, search
(Example)
(Example)
Line 11: Line 11:
 
;make a random number between two set numbers  
 
;make a random number between two set numbers  
 
set %random1 #random % %increments + %base
 
set %random1 #random % %increments + %base
;%increments is the number of different numbers to choose from not counting the 1st. (top# - bottom#) + 1
+
;%increments is (top# - bottom#) + 1
 
;%base is the number closer to 0 from your list of numbers.  
 
;%base is the number closer to 0 from your list of numbers.  
  

Revision as of 14:37, 7 January 2007

Holds a changing random value that ranges between 0 and 999.

Example


;make a random number between 0 and 99.
set %a #random % 100


;make a random number between two set numbers 
set %random1 #random % %increments + %base
;%increments is (top# - bottom#) + 1
;%base is the number closer to 0 from your list of numbers. 

;Example of two random numbers between 3 and 10 ;set %random1 #random % 7 + 4

See also

Main Page Documentation