WoW:API RandomRoll: Difference between revisions

From AddOn Studio
Jump to navigation Jump to search
mNo edit summary
Line 21: Line 21:


== Details ==
== Details ==
:*If only ''low'' is provided, it is taken as the highest number
:*<s>If only ''low'' is provided, it is taken as the highest number</s>
 
:**Looks like this function now requires a high and low. I am unable to get it to run any other way.
 
:*Does the same as '''[[MACRO random|/random low high]]'''
:*Does the same as '''[[MACRO random|/random low high]]'''

Revision as of 04:43, 11 April 2020

WoW API < RandomRoll

Performs a random roll between two numbers.

RandomRoll([low, [high]])

Parameters

Arguments

(low, high)
low
Integer - lowest number (default 1)
high
Integer - highest number (default 100)

Returns

nil

Example

 RandomRoll(1, 10)

Yield: <Your name> rolls. <number> (1-10)

Details

  • If only low is provided, it is taken as the highest number
    • Looks like this function now requires a high and low. I am unable to get it to run any other way.