Character Vault
Any Concept / Any System
Compendium
Your System Come To Life
Roll20 for Android
Streamlined for your Tablet
Roll20 for iPad
Streamlined for your Tablet

Personal tools

Difference between revisions of "QuantumRoll"

From Roll20 Wiki

Jump to: navigation, search
m
(4 intermediate revisions by one user not shown)
Line 1: Line 1:
<div style="background:#f0e2a1; border: 3px solid #dbc870; padding: 10px;">
+
{{revdate}}{{HCbox| {{hc|articles/360037256594-Quantum-Roll Here}} }}
<big>'''''Attention:'''''
+
[[File:Qr.png|thumbnail|right|400px|The [https://app.roll20.net/home/quantum QuantumRoll] page, showing the results of rolls on the platform in real time.]]
''Roll20 is no longer maintaining this document on the community wiki. For the most up-to-date information please visit this page on our help center for assistance: [https://roll20.zendesk.com/hc/en-us/articles/360037256594-Quantum-Roll Here].''</big>
+
'''[https://app.roll20.net/home/quantum QuantumRoll]''' is the Roll20 dice engine which was enabled by default in the Data Delve update. Rather than relying on client-side pseudo-random number generation to perform dice rolls, Roll20 now utilizes a "true random" source of entropy, based on the [[wikipedia:Hardware_random_number_generator#Physical_phenomena_with_quantum-random_properties|quantum fluctuations in the power of a beam of light]]. All rolling is done via our server. This ensures that dice rolls on Roll20 are as random as possible.
</div>
+
QuantumRoll is the Roll20 dice engine which was enabled by default in the Data Delve update. Rather than relying on client-side pseudo-random number generation to perform dice rolls, Roll20 now utilizes a "true random" source of entropy, based on the fluctuations in the power of a beam of light. All rolling is done via our server. This ensures that dice rolls on Roll20 are as random as possible.
+
  
 
It's easy to tell if your rolls are using QuantumRoll -- a small icon will appear next to the roll result, like so:
 
It's easy to tell if your rolls are using QuantumRoll -- a small icon will appear next to the roll result, like so:
Line 9: Line 7:
 
[[File:Quantumrollexample.png]]
 
[[File:Quantumrollexample.png]]
  
When you see this symbol, you know that the roll was generated by our QuantumRoll server -- in fact, your client has verified via [http://en.wikipedia.org/wiki/Digital_signature#Applications_of_digital_signatures cryptographic signature] that the roll is valid and was "signed" by our server's private key; this means it is 100% free from any tampering by a player or a GM. If you client is unable to verify the validity of a roll, you will see an error message instead.
+
When you see this symbol, you know that the roll was generated by our QuantumRoll server -- in fact, your client has verified via [http://en.wikipedia.org/wiki/Digital_signature#Applications_of_digital_signatures cryptographic signature] that the roll is valid and was "signed" by our server's private key; this means it is 100% free from any tampering by a [[player]] or a [[GM]]. If you client is unable to verify the validity of a roll, you will see an error message instead.
  
In addition to the behind-the-scenes upgrades, QuantumRoll introduces a new site-wide "status dashboard" showing all the rolls being made in Roll20 games for the last hour, including important statistics about them such as the median roll (an important measure of randomness), and how many times each result has been rolled. This is a great way to make sure that the dice rolls in Roll20 are performing as intended. It also helps re-assure players that even if they're having a rough roll night, the system is not broken. You view the status dashboard at [https://app.roll20.net/home/quantum https://app.roll20.net/home/quantum].
+
In addition to the behind-the-scenes upgrades, QuantumRoll introduces a new site-wide "status dashboard" showing all the rolls being made in Roll20 games for the last hour, including important statistics about them such as the median roll (an important measure of randomness), and how many times each result has been rolled. This is a great way to make sure that the dice rolls in Roll20 are performing as intended. It also helps re-assure players that even if they're having a rough roll night, the system is not broken.
  
 +
'''You view the status dashboard at [https://app.roll20.net/home/quantum https://app.roll20.net/home/quantum].'''
  
[[File:Qr.png]]
+
==API==
 +
{{pro only}}
 +
[[API]] scripts can't directly access the QuantumRoll outside of rolling dice, so many(?) API that creates some form of random result or even API-backed custom Dice systems just uses the inherit pseudo-random randomness functions available in [[JavaScript]].
 +
 
 +
==See Also==
 +
* {{fpl|7945624/  No, the dice rolls are not broken, or why human intuition on randomness is flawed}} by [[Andreas J.]]
 +
** post addressing perception on what seem or doesn't seem like "random" results.
 +
* [[Dice GUI]]
 +
* [[How to Roll Dice]]
 +
* [[Community FAQ]]
 +
<br>
 +
<br>
 
[[Category:Docs]]
 
[[Category:Docs]]
 +
[[Category:Roll20]]

Revision as of 08:02, 15 October 2021

Attention: This page is community-maintained. For the official Roll20 version of this article, see the Help Center for assistance: Here .

The QuantumRoll page, showing the results of rolls on the platform in real time.

QuantumRoll is the Roll20 dice engine which was enabled by default in the Data Delve update. Rather than relying on client-side pseudo-random number generation to perform dice rolls, Roll20 now utilizes a "true random" source of entropy, based on the quantum fluctuations in the power of a beam of light. All rolling is done via our server. This ensures that dice rolls on Roll20 are as random as possible.

It's easy to tell if your rolls are using QuantumRoll -- a small icon will appear next to the roll result, like so:

Quantumrollexample.png

When you see this symbol, you know that the roll was generated by our QuantumRoll server -- in fact, your client has verified via cryptographic signature that the roll is valid and was "signed" by our server's private key; this means it is 100% free from any tampering by a player or a GM. If you client is unable to verify the validity of a roll, you will see an error message instead.

In addition to the behind-the-scenes upgrades, QuantumRoll introduces a new site-wide "status dashboard" showing all the rolls being made in Roll20 games for the last hour, including important statistics about them such as the median roll (an important measure of randomness), and how many times each result has been rolled. This is a great way to make sure that the dice rolls in Roll20 are performing as intended. It also helps re-assure players that even if they're having a rough roll night, the system is not broken.

You view the status dashboard at https://app.roll20.net/home/quantum.

API

API scripts can't directly access the QuantumRoll outside of rolling dice, so many(?) API that creates some form of random result or even API-backed custom Dice systems just uses the inherit pseudo-random randomness functions available in JavaScript.

See Also