RPTools

Personal tools
From MapToolDoc

ubiquity

Contents

ubiquity() Function

Generates random numbers to emulate dice rolls; returns the total of a special Ubiquity dice roll. When these dice are rolled, the result is 0 or 1, this function then sums up all of the dice rolled and returns that sum.

Usage

  1. ubiquity(times)
  1. u(times)

Parameters

  • times - The number of times to roll the dice.

Examples

Roll ten special Ubiquity dice.

  1. [t: ubiquity(10)]

Returns a number that is between 0 and 10.

Roll five special Ubiquity dice, using variables.

  1. [h: DiceTimes = 5]
  2. [t: ubiquity(DiceTimes)]

Returns a number than is between 0 and 5.

See Also

For another method of rolling dice, see Dice Expressions.