<?php
function parseRollCode($rollCode) {
$cleanRollCode = preg_replace('/\s+/', '', strtolower($rollCode));
$intro = "<strong>Dice Roll:</strong> {$cleanRollCode}";
$error = "Invalid Roll Code";
$result = [
'input' => $rollCode,
'total' => 0,
'detailText' => $intro
];
/*
$out...
[0] => roll tokens (optional leading sign)
[1] => optional signs
[2] => number&type die segments
[3] => reroll threshold segments
[4] => keep setting segments
[5] => constant segments
*/
if (!preg_match_all('~\G(^-?|[+-])(?:(\d+d\d+)(r\d+)?([v^]\d+)?|(\d+))(?=[+-]|$)~x', $cleanRollCode, $out)) {
$result['detailText'] .= "\n{$error}";
return $result;
}
foreach ($out[0] as $index => $segment) {
$result['detailText'] .= "\n<strong>{$segment} Results:</strong>";
if (!empty($out[5][$index])) {
$result['detailText'] .= ' (subtotal: ' . ((int)$segment) . ')';
$result['total'] += $segment;
} else {
// dice count & die type
[$diceCount, $dieType] = explode('d', $out[2][$index], 2);
// positive or negative arithmetic
$signFactor = (!empty($out[1][$index][0]) && $out[1][$index][0] == '-' ? -1 : 1);
// reroll threshold
$rerollThreshold = (int)ltrim($out[3][$index] ?? 0, 'r');
if ($rerollThreshold >= $dieType) {
return ['input' => $rollCode, 'total' => 0, 'detailText' => "{$intro}\n{$error}"];
}
$rollResults = [];
for ($r = 0; $r < $diceCount; ++$r) {
$rollResults[] = rand($rerollThreshold + 1, $dieType);
}
// keep settings
if (!empty($out[4][$index])) {
$keepCount = ltrim($out[4][$index], '^v');
if ($keepCount > $diceCount) {
return ['input' => $rollCode, 'total' => 0, 'detailText' => "{$intro}\n{$error}"];
}
if ($out[4][$index][0] == '^') {
arsort($rollResults);
} else {
asort($rollResults);
}
$keep = array_slice($rollResults, 0, $keepCount, true);
$subtotal = array_sum($keep) * $signFactor;
for ($i = 0, $len = count($rollResults); $i < $len; ++$i) {
$result['detailText'] .= ' ' . ($keep[$i] ?? "<s>{$rollResults[$i]}</s>");
}
$result['detailText'] .= " (subtotal: {$subtotal})";
$result['total'] += $subtotal;
} else {
$subtotal = array_sum($rollResults) * $signFactor;
$result['detailText'] .= " " . implode(" ", $rollResults) . " (subtotal: {$subtotal})";
$result['total'] += $subtotal;
}
}
}
return $result;
}
$rolls = ["1 d2 0", "-1d20+5", "d20", "2d20^1", "4d6r1^3", "5d20^3", "5d8v2", "2d20v1", "5+3d4", "3d20^1",
"3d6r1 + 1d4r2", "-1d20", "1d20+5", "1d20 + 5", "1d-20", "1d20+1d6", "5d20-3d6", "1d6r2", "5d6r-6", "3d20^1v1",
"1d20r30", "1d20r20", "1d20r19", "1d20v2", "1d20v1", "1d20^2", "1d20+5d8r2^3-5-1d6+3d4+2-4+6-8"];
foreach ($rolls as $roll) {
$rollResult = parseRollCode($roll);
echo "{$rollResult['detailText']}\n<strong>Total:</strong> {$rollResult['total']}\n---\n";
}
- Output for 8.0.1
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 19 (subtotal: -19)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -14
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>12</s> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>3</s> 4 4 5 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 7 <s>1</s> 8 <s>2</s> 13 (subtotal: 28)
<strong>Total:</strong> 28
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 3 <s>5</s> 1 <s>7</s> <s>3</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>20</s> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 4 4 (subtotal: 10)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 16 <s>5</s> <s>16</s> (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 5 6 4 (subtotal: 15)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 9 (subtotal: -9)
<strong>Total:</strong> -9
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+1d6 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 4 5 17 20 2 (subtotal: 48)
<strong>-3d6 Results:</strong> 4 4 4 (subtotal: -12)
<strong>Total:</strong> 36
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>+5d8r2^3 Results:</strong> 7 <s>4</s> 7 <s>5</s> 7 (subtotal: 21)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 2 (subtotal: -2)
<strong>+3d4 Results:</strong> 4 1 2 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 37
---
- Output for 8.0.0
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 14 (subtotal: -14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -9
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>2</s> 15 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 5 <s>2</s> 5 5 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 9 <s>4</s> <s>1</s> 19 19 (subtotal: 47)
<strong>Total:</strong> 47
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 4 3 <s>8</s> <s>7</s> <s>8</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>8</s> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 4 2 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 15 <s>4</s> <s>5</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 3 6 2 (subtotal: 11)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 7 (subtotal: -7)
<strong>Total:</strong> -7
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>+1d6 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 2 2 14 9 10 (subtotal: 37)
<strong>-3d6 Results:</strong> 2 1 6 (subtotal: -9)
<strong>Total:</strong> 28
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 10 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5d8r2^3 Results:</strong> 5 5 <s>3</s> 6 <s>4</s> (subtotal: 16)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 5 (subtotal: -5)
<strong>+3d4 Results:</strong> 1 3 4 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 25
---
- Output for 7.4.14
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 17 (subtotal: -17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -12
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>6</s> 7 (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 5 6 <s>4</s> 5 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 20 <s>7</s> <s>11</s> 19 13 (subtotal: 52)
<strong>Total:</strong> 52
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 1 <s>5</s> 1 <s>6</s> <s>3</s> (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>16</s> 8 (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 3 2 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>2</s> <s>2</s> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 6 4 (subtotal: 16)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 5 (subtotal: -5)
<strong>Total:</strong> -5
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 21
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+1d6 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 10 4 13 15 2 (subtotal: 44)
<strong>-3d6 Results:</strong> 1 2 2 (subtotal: -5)
<strong>Total:</strong> 39
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5d8r2^3 Results:</strong> 8 5 5 <s>4</s> <s>3</s> (subtotal: 18)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 3 (subtotal: -3)
<strong>+3d4 Results:</strong> 4 3 3 (subtotal: 10)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 31
---
- Output for 7.4.13
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 16 (subtotal: -16)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -11
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>2</s> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 5 3 <s>3</s> 6 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>4</s> <s>9</s> 18 15 17 (subtotal: 50)
<strong>Total:</strong> 50
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>6</s> 2 <s>6</s> 1 <s>2</s> (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>16</s> 12 (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 4 3 (subtotal: 10)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>6</s> 17 <s>12</s> (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 3 2 6 (subtotal: 11)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 20 (subtotal: -20)
<strong>Total:</strong> -20
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+1d6 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 16 7 17 18 20 (subtotal: 78)
<strong>-3d6 Results:</strong> 3 1 3 (subtotal: -7)
<strong>Total:</strong> 71
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>+5d8r2^3 Results:</strong> 5 <s>4</s> 6 <s>3</s> 6 (subtotal: 17)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 2 (subtotal: -2)
<strong>+3d4 Results:</strong> 2 2 2 (subtotal: 6)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 32
---
- Output for 7.4.12
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 4 (subtotal: -4)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 17 <s>1</s> (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 3 4 <s>2</s> (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 18 14 <s>8</s> 20 <s>5</s> (subtotal: 52)
<strong>Total:</strong> 52
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 6 1 <s>8</s> <s>7</s> <s>7</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>8</s> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 3 1 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>3</s> <s>19</s> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 2 4 (subtotal: 12)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 16 (subtotal: -16)
<strong>Total:</strong> -16
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+1d6 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 16 14 10 5 18 (subtotal: 63)
<strong>-3d6 Results:</strong> 2 3 4 (subtotal: -9)
<strong>Total:</strong> 54
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+5d8r2^3 Results:</strong> 8 <s>3</s> 8 <s>4</s> 5 (subtotal: 21)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 5 (subtotal: -5)
<strong>+3d4 Results:</strong> 1 3 4 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 22
---
- Output for 7.4.11
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 17 (subtotal: -17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -12
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 8 <s>2</s> (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>2</s> 4 4 6 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 20 <s>7</s> 18 <s>8</s> 15 (subtotal: 53)
<strong>Total:</strong> 53
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>6</s> 4 <s>5</s> <s>7</s> 4 (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 2 <s>2</s> (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 4 3 (subtotal: 10)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>3</s> 16 <s>7</s> (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 5 5 (subtotal: 12)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 9 (subtotal: -9)
<strong>Total:</strong> -9
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>+1d6 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 12 10 17 1 11 (subtotal: 51)
<strong>-3d6 Results:</strong> 6 2 1 (subtotal: -9)
<strong>Total:</strong> 42
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+5d8r2^3 Results:</strong> <s>5</s> 6 7 7 <s>3</s> (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 2 (subtotal: -2)
<strong>+3d4 Results:</strong> 2 2 3 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 26
---
- Output for 7.4.10
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 4 (subtotal: -4)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>6</s> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 5 6 <s>2</s> 3 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 14 11 <s>3</s> 18 <s>3</s> (subtotal: 43)
<strong>Total:</strong> 43
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 2 4 <s>5</s> <s>5</s> <s>5</s> (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 2 <s>2</s> (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 3 4 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>7</s> <s>7</s> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 4 4 4 (subtotal: 12)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 3 (subtotal: -3)
<strong>Total:</strong> -3
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 21
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+1d6 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 19 4 3 7 3 (subtotal: 36)
<strong>-3d6 Results:</strong> 1 2 6 (subtotal: -9)
<strong>Total:</strong> 27
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+5d8r2^3 Results:</strong> 6 5 8 <s>3</s> <s>5</s> (subtotal: 19)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 4 3 4 (subtotal: 11)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 24
---
- Output for 7.4.9
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 10 (subtotal: -10)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -5
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>5</s> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 2 4 <s>2</s> 3 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 17 16 <s>2</s> <s>9</s> 11 (subtotal: 44)
<strong>Total:</strong> 44
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> <s>4</s> 3 3 <s>3</s> (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>8</s> 2 (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 2 1 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>7</s> <s>6</s> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 2 2 (subtotal: 10)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 10 (subtotal: -10)
<strong>Total:</strong> -10
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 25
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+1d6 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 17 9 14 1 15 (subtotal: 56)
<strong>-3d6 Results:</strong> 4 6 5 (subtotal: -15)
<strong>Total:</strong> 41
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+5d8r2^3 Results:</strong> <s>6</s> 7 8 <s>3</s> 7 (subtotal: 22)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 3 1 1 (subtotal: 5)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 22
---
- Output for 7.4.8
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 11 (subtotal: -11)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -6
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 16 <s>5</s> (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 6 5 4 <s>2</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 13 5 <s>2</s> 12 <s>3</s> (subtotal: 30)
<strong>Total:</strong> 30
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>5</s> <s>8</s> 2 2 <s>5</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 9 <s>13</s> (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 4 3 (subtotal: 11)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>4</s> <s>5</s> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 2 3 (subtotal: 11)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 1 (subtotal: -1)
<strong>Total:</strong> -1
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>+1d6 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 15 2 3 16 10 (subtotal: 46)
<strong>-3d6 Results:</strong> 2 1 1 (subtotal: -4)
<strong>Total:</strong> 42
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>+5d8r2^3 Results:</strong> 8 7 5 <s>5</s> <s>5</s> (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 1 (subtotal: -1)
<strong>+3d4 Results:</strong> 3 3 3 (subtotal: 9)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 22
---
- Output for 7.4.7
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 9 (subtotal: -9)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -4
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>4</s> 18 (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 4 2 5 <s>2</s> (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 9 <s>4</s> 12 15 <s>4</s> (subtotal: 36)
<strong>Total:</strong> 36
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>5</s> 3 2 <s>7</s> <s>8</s> (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 5 <s>13</s> (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 1 1 (subtotal: 4)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>12</s> 17 <s>8</s> (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 5 6 (subtotal: 17)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 21
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 14 (subtotal: -14)
<strong>Total:</strong> -14
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+1d6 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 10 8 15 14 1 (subtotal: 48)
<strong>-3d6 Results:</strong> 4 5 3 (subtotal: -12)
<strong>Total:</strong> 36
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+5d8r2^3 Results:</strong> 7 <s>4</s> <s>3</s> 8 6 (subtotal: 21)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 1 (subtotal: -1)
<strong>+3d4 Results:</strong> 4 3 4 (subtotal: 11)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 38
---
- Output for 7.4.6
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 6 (subtotal: -6)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -1
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 19 <s>3</s> (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 6 4 <s>2</s> (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 14 13 7 <s>3</s> <s>4</s> (subtotal: 34)
<strong>Total:</strong> 34
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>6</s> <s>5</s> <s>7</s> 1 1 (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>20</s> 16 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 3 2 (subtotal: 6)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 18 <s>14</s> <s>18</s> (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 2 2 (subtotal: 10)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 13 (subtotal: -13)
<strong>Total:</strong> -13
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 15 19 17 16 10 (subtotal: 77)
<strong>-3d6 Results:</strong> 3 5 3 (subtotal: -11)
<strong>Total:</strong> 66
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>+5d8r2^3 Results:</strong> <s>4</s> 6 7 5 <s>3</s> (subtotal: 18)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 4 1 2 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 32
---
- Output for 7.4.5
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 5 (subtotal: -5)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>7</s> 10 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 2 4 4 <s>2</s> (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>3</s> 14 <s>13</s> 18 14 (subtotal: 46)
<strong>Total:</strong> 46
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> 6 <s>7</s> 3 <s>8</s> (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>2</s> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 1 1 (subtotal: 3)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 20 <s>9</s> <s>13</s> (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 5 5 (subtotal: 16)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 2 (subtotal: -2)
<strong>Total:</strong> -2
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>+1d6 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 20 16 14 15 19 (subtotal: 84)
<strong>-3d6 Results:</strong> 4 2 6 (subtotal: -12)
<strong>Total:</strong> 72
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5d8r2^3 Results:</strong> <s>5</s> <s>3</s> 7 7 6 (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 3 (subtotal: -3)
<strong>+3d4 Results:</strong> 2 3 3 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 30
---
- Output for 7.4.4
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 17 (subtotal: -17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -12
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 15 <s>12</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 6 4 <s>3</s> (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 8 <s>1</s> 7 <s>3</s> 17 (subtotal: 32)
<strong>Total:</strong> 32
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>6</s> 2 2 <s>3</s> <s>2</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>17</s> 16 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 3 3 (subtotal: 9)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>17</s> 20 <s>1</s> (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 4 4 (subtotal: 10)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 3 (subtotal: -3)
<strong>Total:</strong> -3
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+1d6 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 19 4 9 10 9 (subtotal: 51)
<strong>-3d6 Results:</strong> 5 1 4 (subtotal: -10)
<strong>Total:</strong> 41
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>+5d8r2^3 Results:</strong> 3 <s>3</s> <s>3</s> 7 6 (subtotal: 16)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 1 2 4 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 11
---
- Output for 7.4.3
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 17 (subtotal: -17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -12
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>15</s> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 4 2 6 <s>2</s> (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 11 4 4 <s>2</s> <s>2</s> (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 4 4 <s>6</s> <s>4</s> <s>5</s> (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 6 <s>15</s> (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 2 1 (subtotal: 5)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>12</s> 19 <s>10</s> (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 3 4 (subtotal: 9)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 11 (subtotal: -11)
<strong>Total:</strong> -11
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+1d6 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 8 19 15 7 16 (subtotal: 65)
<strong>-3d6 Results:</strong> 3 3 1 (subtotal: -7)
<strong>Total:</strong> 58
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>+5d8r2^3 Results:</strong> 8 <s>3</s> 6 <s>3</s> 4 (subtotal: 18)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 1 (subtotal: -1)
<strong>+3d4 Results:</strong> 4 3 3 (subtotal: 10)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 20
---
- Output for 7.4.2
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 19 (subtotal: -19)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -14
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>3</s> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 2 6 <s>2</s> 5 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 18 <s>5</s> <s>6</s> 18 14 (subtotal: 50)
<strong>Total:</strong> 50
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> 4 <s>8</s> 2 <s>7</s> (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>17</s> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 1 1 (subtotal: 3)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>9</s> 17 <s>13</s> (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 5 4 4 (subtotal: 13)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 17 (subtotal: -17)
<strong>Total:</strong> -17
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 10 8 1 4 6 (subtotal: 29)
<strong>-3d6 Results:</strong> 5 2 2 (subtotal: -9)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5d8r2^3 Results:</strong> <s>3</s> 7 8 6 <s>6</s> (subtotal: 21)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 1 4 2 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 17
---
- Output for 7.4.1
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 1 (subtotal: -1)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 14 <s>3</s> (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 5 3 <s>2</s> (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>2</s> 17 14 <s>6</s> 17 (subtotal: 48)
<strong>Total:</strong> 48
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 3 <s>7</s> 2 <s>3</s> <s>7</s> (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 14 <s>14</s> (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 3 1 (subtotal: 5)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>3</s> <s>1</s> 12 (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 4 6 4 (subtotal: 14)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 12 (subtotal: -12)
<strong>Total:</strong> -12
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 25
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 10 16 1 16 2 (subtotal: 45)
<strong>-3d6 Results:</strong> 4 5 6 (subtotal: -15)
<strong>Total:</strong> 30
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 15 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+5d8r2^3 Results:</strong> 5 <s>4</s> 8 6 <s>5</s> (subtotal: 19)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 5 (subtotal: -5)
<strong>+3d4 Results:</strong> 2 3 3 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 20
---
- Output for 7.4.0
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 12 (subtotal: -12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -7
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>4</s> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 2 4 <s>2</s> 5 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 19 <s>4</s> <s>2</s> 12 8 (subtotal: 39)
<strong>Total:</strong> 39
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 1 <s>8</s> <s>4</s> 3 <s>3</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 4 <s>8</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 4 3 (subtotal: 11)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>5</s> 14 <s>2</s> (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 3 4 (subtotal: 9)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 13 (subtotal: -13)
<strong>Total:</strong> -13
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+1d6 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 1 16 1 6 5 (subtotal: 29)
<strong>-3d6 Results:</strong> 2 4 6 (subtotal: -12)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5d8r2^3 Results:</strong> <s>6</s> 7 7 8 <s>6</s> (subtotal: 22)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 1 3 4 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 19
---
- Output for 7.3.26
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 4 (subtotal: -4)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 17 <s>15</s> (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 6 <s>2</s> 3 6 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 18 17 17 <s>17</s> <s>10</s> (subtotal: 52)
<strong>Total:</strong> 52
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>4</s> <s>7</s> 2 1 <s>3</s> (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>17</s> 10 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 1 4 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>3</s> <s>8</s> 18 (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 2 4 (subtotal: 12)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 1 (subtotal: -1)
<strong>Total:</strong> -1
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+1d6 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 2 3 12 4 12 (subtotal: 33)
<strong>-3d6 Results:</strong> 5 2 4 (subtotal: -11)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+5d8r2^3 Results:</strong> 6 6 <s>5</s> 6 <s>4</s> (subtotal: 18)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 3 (subtotal: -3)
<strong>+3d4 Results:</strong> 3 2 2 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 21
---
- Output for 7.3.25
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 1 (subtotal: -1)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>12</s> 15 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 5 5 <s>4</s> 5 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 14 <s>7</s> <s>6</s> 13 11 (subtotal: 38)
<strong>Total:</strong> 38
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 3 4 <s>8</s> <s>6</s> <s>4</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>20</s> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 1 3 (subtotal: 6)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 15 <s>11</s> <s>15</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 4 3 3 (subtotal: 10)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 8 (subtotal: -8)
<strong>Total:</strong> -8
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 21
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>+1d6 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 8 4 10 19 6 (subtotal: 47)
<strong>-3d6 Results:</strong> 1 2 6 (subtotal: -9)
<strong>Total:</strong> 38
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+5d8r2^3 Results:</strong> <s>3</s> 5 5 6 <s>5</s> (subtotal: 16)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 3 (subtotal: -3)
<strong>+3d4 Results:</strong> 4 1 3 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 23
---
- Output for 7.3.24
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 17 (subtotal: -17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -12
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 5 <s>4</s> (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 5 4 6 <s>2</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 7 <s>6</s> 9 <s>1</s> 16 (subtotal: 32)
<strong>Total:</strong> 32
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 3 5 <s>6</s> <s>5</s> <s>7</s> (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 19 <s>19</s> (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 3 1 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 13 <s>3</s> <s>6</s> (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 5 3 2 (subtotal: 10)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 3 (subtotal: -3)
<strong>Total:</strong> -3
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>+1d6 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 11 5 4 18 13 (subtotal: 51)
<strong>-3d6 Results:</strong> 4 6 6 (subtotal: -16)
<strong>Total:</strong> 35
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5d8r2^3 Results:</strong> 8 <s>4</s> 8 <s>4</s> 7 (subtotal: 23)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 3 (subtotal: -3)
<strong>+3d4 Results:</strong> 2 1 3 (subtotal: 6)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 34
---
- Output for 7.3.23
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 17 (subtotal: -17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -12
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>6</s> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 2 4 <s>2</s> (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>5</s> 8 <s>5</s> 19 16 (subtotal: 43)
<strong>Total:</strong> 43
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>3</s> 2 <s>4</s> 2 <s>8</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>11</s> 2 (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 3 4 (subtotal: 11)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>4</s> <s>3</s> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 5 4 2 (subtotal: 11)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 11 (subtotal: -11)
<strong>Total:</strong> -11
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>+1d6 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 15 6 2 8 9 (subtotal: 40)
<strong>-3d6 Results:</strong> 1 5 2 (subtotal: -8)
<strong>Total:</strong> 32
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 7 (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+5d8r2^3 Results:</strong> 5 <s>4</s> 6 8 <s>4</s> (subtotal: 19)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 1 2 1 (subtotal: 4)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 20
---
- Output for 7.3.22
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 11 (subtotal: -11)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -6
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 12 <s>8</s> (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>3</s> 4 6 6 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 9 19 <s>2</s> 14 <s>8</s> (subtotal: 42)
<strong>Total:</strong> 42
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> 1 1 <s>6</s> <s>7</s> (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 1 <s>2</s> (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 4 1 (subtotal: 6)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 20 <s>4</s> <s>12</s> (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 3 5 5 (subtotal: 13)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 2 (subtotal: -2)
<strong>Total:</strong> -2
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 25
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>+1d6 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 12 20 20 4 17 (subtotal: 73)
<strong>-3d6 Results:</strong> 2 4 5 (subtotal: -11)
<strong>Total:</strong> 62
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5d8r2^3 Results:</strong> 6 7 <s>6</s> <s>3</s> 7 (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 3 1 4 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 30
---
- Output for 7.3.21
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 17 (subtotal: -17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -12
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 15 <s>11</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 2 5 4 <s>2</s> (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>5</s> <s>8</s> 14 20 17 (subtotal: 51)
<strong>Total:</strong> 51
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 3 <s>5</s> <s>6</s> 1 <s>6</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>13</s> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 2 2 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>8</s> 9 <s>4</s> (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 3 5 2 (subtotal: 10)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 13 (subtotal: -13)
<strong>Total:</strong> -13
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+1d6 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 4 10 2 10 6 (subtotal: 32)
<strong>-3d6 Results:</strong> 2 1 5 (subtotal: -8)
<strong>Total:</strong> 24
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 18 (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+5d8r2^3 Results:</strong> <s>4</s> <s>3</s> 7 8 8 (subtotal: 23)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 5 (subtotal: -5)
<strong>+3d4 Results:</strong> 1 4 3 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 28
---
- Output for 7.3.20
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 9 (subtotal: -9)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -4
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>5</s> 10 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 5 3 <s>3</s> 4 (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 15 14 17 <s>5</s> <s>11</s> (subtotal: 46)
<strong>Total:</strong> 46
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>4</s> 1 <s>6</s> 1 <s>7</s> (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>7</s> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 4 3 (subtotal: 11)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>10</s> <s>18</s> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 4 5 (subtotal: 15)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 3 (subtotal: -3)
<strong>Total:</strong> -3
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 13 18 19 11 10 (subtotal: 71)
<strong>-3d6 Results:</strong> 1 2 3 (subtotal: -6)
<strong>Total:</strong> 65
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>+5d8r2^3 Results:</strong> 5 6 <s>5</s> <s>5</s> 8 (subtotal: 19)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 4 1 2 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 33
---
- Output for 7.3.19
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 18 (subtotal: -18)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -13
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>1</s> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 5 4 5 <s>3</s> (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 6 <s>5</s> <s>5</s> 6 19 (subtotal: 31)
<strong>Total:</strong> 31
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 1 <s>4</s> 3 <s>4</s> <s>5</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>12</s> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 4 4 (subtotal: 9)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>3</s> <s>7</s> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 5 3 (subtotal: 14)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 9 (subtotal: -9)
<strong>Total:</strong> -9
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 21
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 4 19 18 9 8 (subtotal: 58)
<strong>-3d6 Results:</strong> 1 1 2 (subtotal: -4)
<strong>Total:</strong> 54
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+5d8r2^3 Results:</strong> <s>4</s> 5 6 <s>4</s> 6 (subtotal: 17)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 1 (subtotal: -1)
<strong>+3d4 Results:</strong> 1 2 3 (subtotal: 6)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 31
---
- Output for 7.3.18
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 9 (subtotal: -9)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -4
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>9</s> 18 (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 6 3 6 <s>3</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>8</s> 19 19 <s>5</s> 12 (subtotal: 50)
<strong>Total:</strong> 50
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>4</s> <s>3</s> 2 <s>6</s> 2 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 7 <s>8</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 4 2 (subtotal: 10)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 19 <s>9</s> <s>12</s> (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 5 4 6 (subtotal: 15)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 7 (subtotal: -7)
<strong>Total:</strong> -7
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 19 (subtotal: 19)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 24
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+1d6 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 15 2 5 7 8 (subtotal: 37)
<strong>-3d6 Results:</strong> 5 2 5 (subtotal: -12)
<strong>Total:</strong> 25
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5d8r2^3 Results:</strong> <s>3</s> 5 7 <s>5</s> 7 (subtotal: 19)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 3 (subtotal: -3)
<strong>+3d4 Results:</strong> 2 3 1 (subtotal: 6)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 17
---
- Output for 7.3.17
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 15 (subtotal: -15)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -10
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>5</s> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>3</s> 4 6 5 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 20 6 <s>2</s> <s>4</s> 16 (subtotal: 42)
<strong>Total:</strong> 42
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>7</s> <s>7</s> 5 <s>6</s> 5 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>20</s> 16 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 2 1 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>6</s> 19 <s>6</s> (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 6 5 (subtotal: 17)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 5 (subtotal: -5)
<strong>Total:</strong> -5
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+1d6 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 9 17 3 4 5 (subtotal: 38)
<strong>-3d6 Results:</strong> 4 3 5 (subtotal: -12)
<strong>Total:</strong> 26
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 8 (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+5d8r2^3 Results:</strong> <s>3</s> 7 6 <s>5</s> 6 (subtotal: 19)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 2 (subtotal: -2)
<strong>+3d4 Results:</strong> 1 3 3 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 31
---
- Output for 7.3.16
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 1 (subtotal: -1)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>4</s> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 6 3 3 <s>3</s> (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 13 <s>10</s> <s>11</s> 20 12 (subtotal: 45)
<strong>Total:</strong> 45
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>6</s> <s>2</s> 1 1 <s>5</s> (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 1 <s>3</s> (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 3 1 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>2</s> <s>1</s> 12 (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 3 4 6 (subtotal: 13)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 6 (subtotal: -6)
<strong>Total:</strong> -6
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 7 1 7 18 20 (subtotal: 53)
<strong>-3d6 Results:</strong> 1 5 6 (subtotal: -12)
<strong>Total:</strong> 41
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 19 (subtotal: 19)
<strong>+5d8r2^3 Results:</strong> 8 <s>6</s> 8 <s>4</s> 8 (subtotal: 24)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 3 1 3 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 37
---
- Output for 7.3.15
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 19 (subtotal: -19)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -14
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 5 <s>4</s> (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 5 4 <s>3</s> (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>1</s> <s>2</s> 10 13 20 (subtotal: 43)
<strong>Total:</strong> 43
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 5 4 <s>7</s> <s>5</s> <s>7</s> (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 6 <s>11</s> (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 2 4 (subtotal: 9)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 20 <s>20</s> <s>18</s> (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 3 5 (subtotal: 10)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 2 (subtotal: -2)
<strong>Total:</strong> -2
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 14 14 10 8 15 (subtotal: 61)
<strong>-3d6 Results:</strong> 4 1 3 (subtotal: -8)
<strong>Total:</strong> 53
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>+5d8r2^3 Results:</strong> 6 6 7 <s>5</s> <s>4</s> (subtotal: 19)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 4 4 2 (subtotal: 10)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 17
---
- Output for 7.3.14
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 10 (subtotal: -10)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -5
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>7</s> 14 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 2 3 2 <s>2</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 10 14 <s>7</s> <s>2</s> 12 (subtotal: 36)
<strong>Total:</strong> 36
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 2 <s>7</s> <s>7</s> 2 <s>3</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>15</s> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 4 4 (subtotal: 9)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 14 <s>11</s> <s>1</s> (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 5 3 (subtotal: 14)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 6 (subtotal: -6)
<strong>Total:</strong> -6
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+1d6 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 10 14 15 9 1 (subtotal: 49)
<strong>-3d6 Results:</strong> 4 3 2 (subtotal: -9)
<strong>Total:</strong> 40
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 15 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+5d8r2^3 Results:</strong> 5 6 <s>4</s> 6 <s>3</s> (subtotal: 17)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 3 (subtotal: -3)
<strong>+3d4 Results:</strong> 3 1 3 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 28
---
- Output for 7.3.13
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 2 (subtotal: -2)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>6</s> 14 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 5 3 <s>3</s> 5 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 18 <s>4</s> 14 <s>4</s> 20 (subtotal: 52)
<strong>Total:</strong> 52
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 3 <s>6</s> 2 <s>8</s> <s>5</s> (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>18</s> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 1 2 (subtotal: 4)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>10</s> <s>15</s> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 5 5 (subtotal: 12)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 1 (subtotal: -1)
<strong>Total:</strong> -1
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+1d6 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 6 16 8 11 7 (subtotal: 48)
<strong>-3d6 Results:</strong> 5 1 2 (subtotal: -8)
<strong>Total:</strong> 40
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>+5d8r2^3 Results:</strong> <s>3</s> 6 5 <s>3</s> 7 (subtotal: 18)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 5 (subtotal: -5)
<strong>+3d4 Results:</strong> 4 4 3 (subtotal: 11)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 18
---
- Output for 7.3.12
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 12 (subtotal: -12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -7
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>10</s> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 6 4 <s>2</s> 4 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 10 <s>3</s> 14 11 <s>2</s> (subtotal: 35)
<strong>Total:</strong> 35
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 1 1 <s>3</s> <s>7</s> <s>4</s> (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 1 <s>8</s> (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 3 3 (subtotal: 10)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 15 <s>10</s> <s>3</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 3 4 6 (subtotal: 13)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 6 (subtotal: -6)
<strong>Total:</strong> -6
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>+1d6 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 17 14 16 19 14 (subtotal: 80)
<strong>-3d6 Results:</strong> 5 5 6 (subtotal: -16)
<strong>Total:</strong> 64
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 10 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>+5d8r2^3 Results:</strong> 6 5 <s>3</s> <s>5</s> 6 (subtotal: 17)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 3 3 2 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 19
---
- Output for 7.3.11
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 2 (subtotal: -2)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 20 <s>10</s> (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 6 <s>2</s> 4 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 7 <s>4</s> <s>1</s> 18 18 (subtotal: 43)
<strong>Total:</strong> 43
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 3 1 <s>4</s> <s>4</s> <s>7</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>20</s> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 4 4 (subtotal: 12)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>16</s> <s>7</s> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 2 6 (subtotal: 14)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 10 (subtotal: -10)
<strong>Total:</strong> -10
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+1d6 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 10 8 18 3 5 (subtotal: 44)
<strong>-3d6 Results:</strong> 6 2 5 (subtotal: -13)
<strong>Total:</strong> 31
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+5d8r2^3 Results:</strong> <s>3</s> 5 6 <s>4</s> 5 (subtotal: 16)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 2 4 1 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 24
---
- Output for 7.3.10
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 11 (subtotal: -11)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -6
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 15 <s>11</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 4 6 4 <s>3</s> (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>7</s> 14 8 <s>4</s> 12 (subtotal: 34)
<strong>Total:</strong> 34
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 4 4 <s>4</s> <s>6</s> <s>6</s> (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>8</s> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 1 3 (subtotal: 5)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>10</s> <s>5</s> 15 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 6 2 (subtotal: 14)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 15 (subtotal: -15)
<strong>Total:</strong> -15
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+1d6 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 9 4 11 13 2 (subtotal: 39)
<strong>-3d6 Results:</strong> 1 6 4 (subtotal: -11)
<strong>Total:</strong> 28
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>+5d8r2^3 Results:</strong> <s>4</s> <s>4</s> 6 8 6 (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 2 (subtotal: -2)
<strong>+3d4 Results:</strong> 2 1 2 (subtotal: 5)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 34
---
- Output for 7.3.9
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 9 (subtotal: -9)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -4
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>12</s> 16 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 6 2 2 <s>2</s> (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>3</s> 19 12 19 <s>11</s> (subtotal: 50)
<strong>Total:</strong> 50
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 6 <s>7</s> 3 <s>8</s> <s>8</s> (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>7</s> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 4 1 (subtotal: 6)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 13 <s>13</s> <s>7</s> (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 4 5 4 (subtotal: 13)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 13 (subtotal: -13)
<strong>Total:</strong> -13
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+1d6 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 4 3 2 11 4 (subtotal: 24)
<strong>-3d6 Results:</strong> 5 2 4 (subtotal: -11)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 18 (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>+5d8r2^3 Results:</strong> 5 <s>5</s> 6 <s>4</s> 7 (subtotal: 18)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 1 3 3 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 19
---
- Output for 7.3.8
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 11 (subtotal: -11)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -6
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 9 <s>6</s> (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 5 <s>2</s> 6 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 18 12 <s>4</s> 9 <s>2</s> (subtotal: 39)
<strong>Total:</strong> 39
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 7 <s>7</s> 1 <s>8</s> <s>8</s> (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>13</s> 2 (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 2 4 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>1</s> <s>8</s> 12 (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 3 4 6 (subtotal: 13)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 1 (subtotal: -1)
<strong>Total:</strong> -1
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+1d6 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 15 6 1 9 13 (subtotal: 44)
<strong>-3d6 Results:</strong> 5 4 6 (subtotal: -15)
<strong>Total:</strong> 29
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 19 (subtotal: 19)
<strong>+5d8r2^3 Results:</strong> 7 <s>6</s> <s>3</s> 8 7 (subtotal: 22)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 3 (subtotal: -3)
<strong>+3d4 Results:</strong> 4 4 4 (subtotal: 12)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 41
---
- Output for 7.3.7
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 15 (subtotal: -15)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -10
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 18 <s>13</s> (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 4 <s>2</s> 4 6 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 19 <s>8</s> 13 11 <s>6</s> (subtotal: 43)
<strong>Total:</strong> 43
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>5</s> <s>7</s> 3 3 <s>6</s> (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>10</s> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 1 3 (subtotal: 6)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>6</s> 19 <s>7</s> (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 3 2 (subtotal: 7)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 7 (subtotal: -7)
<strong>Total:</strong> -7
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 16 5 18 10 2 (subtotal: 51)
<strong>-3d6 Results:</strong> 6 5 1 (subtotal: -12)
<strong>Total:</strong> 39
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5d8r2^3 Results:</strong> <s>4</s> <s>4</s> 7 8 7 (subtotal: 22)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 2 1 3 (subtotal: 6)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 25
---
- Output for 7.3.6
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 14 (subtotal: -14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -9
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>17</s> 18 (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 5 6 <s>2</s> 5 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 10 10 6 <s>1</s> <s>2</s> (subtotal: 26)
<strong>Total:</strong> 26
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>3</s> <s>5</s> 2 <s>3</s> 1 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 5 <s>14</s> (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 2 3 (subtotal: 9)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>10</s> <s>14</s> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 5 3 4 (subtotal: 12)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 11 (subtotal: -11)
<strong>Total:</strong> -11
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+1d6 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 19 6 4 19 4 (subtotal: 52)
<strong>-3d6 Results:</strong> 3 3 4 (subtotal: -10)
<strong>Total:</strong> 42
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+5d8r2^3 Results:</strong> 6 <s>6</s> 7 7 <s>4</s> (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 1 (subtotal: -1)
<strong>+3d4 Results:</strong> 4 1 2 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 28
---
- Output for 7.3.5
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 1 (subtotal: -1)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 12 <s>9</s> (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 6 6 4 <s>4</s> (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 18 <s>2</s> 8 <s>2</s> 9 (subtotal: 35)
<strong>Total:</strong> 35
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 1 <s>7</s> 3 <s>5</s> <s>3</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 4 <s>18</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 3 2 (subtotal: 9)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 8 <s>7</s> <s>7</s> (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 4 5 (subtotal: 11)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 18 (subtotal: -18)
<strong>Total:</strong> -18
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+1d6 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 8 10 6 15 12 (subtotal: 51)
<strong>-3d6 Results:</strong> 4 6 3 (subtotal: -13)
<strong>Total:</strong> 38
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+5d8r2^3 Results:</strong> <s>4</s> 5 8 <s>3</s> 5 (subtotal: 18)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 2 2 4 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 19
---
- Output for 7.3.4
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 14 (subtotal: -14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -9
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 20 <s>5</s> (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>2</s> 3 3 5 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>1</s> 19 18 14 <s>14</s> (subtotal: 51)
<strong>Total:</strong> 51
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 3 <s>7</s> <s>5</s> 4 <s>5</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 3 <s>11</s> (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 3 2 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>1</s> <s>1</s> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 4 3 5 (subtotal: 12)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 3 (subtotal: -3)
<strong>Total:</strong> -3
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+1d6 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 18 5 15 7 19 (subtotal: 64)
<strong>-3d6 Results:</strong> 5 1 6 (subtotal: -12)
<strong>Total:</strong> 52
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+5d8r2^3 Results:</strong> <s>4</s> 7 6 7 <s>4</s> (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 3 1 2 (subtotal: 6)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 19
---
- Output for 7.3.3
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 6 (subtotal: -6)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -1
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>8</s> 10 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 4 6 6 <s>2</s> (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>2</s> <s>5</s> 7 17 11 (subtotal: 35)
<strong>Total:</strong> 35
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>4</s> 2 <s>7</s> 2 <s>6</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>18</s> 14 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 2 2 (subtotal: 6)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>2</s> <s>5</s> 15 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 2 6 (subtotal: 10)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 14 (subtotal: -14)
<strong>Total:</strong> -14
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 25
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>+1d6 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 7 6 16 13 4 (subtotal: 46)
<strong>-3d6 Results:</strong> 2 3 4 (subtotal: -9)
<strong>Total:</strong> 37
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 8 (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>+5d8r2^3 Results:</strong> 8 <s>4</s> 6 6 <s>3</s> (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 5 (subtotal: -5)
<strong>+3d4 Results:</strong> 2 1 1 (subtotal: 4)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 13
---
- Output for 7.3.2
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 17 (subtotal: -17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -12
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 20 <s>13</s> (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 4 6 <s>4</s> 6 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>13</s> 19 18 <s>6</s> 18 (subtotal: 55)
<strong>Total:</strong> 55
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 2 5 <s>7</s> <s>7</s> <s>6</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 7 <s>14</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 2 4 (subtotal: 9)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>9</s> 10 <s>2</s> (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 3 2 3 (subtotal: 8)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 14 (subtotal: -14)
<strong>Total:</strong> -14
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>+1d6 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 7 16 20 13 18 (subtotal: 74)
<strong>-3d6 Results:</strong> 6 1 1 (subtotal: -8)
<strong>Total:</strong> 66
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+5d8r2^3 Results:</strong> <s>4</s> 7 7 8 <s>3</s> (subtotal: 22)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 1 (subtotal: -1)
<strong>+3d4 Results:</strong> 1 3 1 (subtotal: 5)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 24
---
- Output for 7.3.1
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 17 (subtotal: -17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -12
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 14 <s>10</s> (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 4 5 <s>4</s> 5 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 15 12 <s>12</s> 18 <s>6</s> (subtotal: 45)
<strong>Total:</strong> 45
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> 3 1 <s>3</s> <s>8</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 2 <s>14</s> (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 4 4 (subtotal: 11)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>7</s> <s>1</s> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 4 6 6 (subtotal: 16)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 8 (subtotal: -8)
<strong>Total:</strong> -8
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+1d6 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 13 1 11 13 19 (subtotal: 57)
<strong>-3d6 Results:</strong> 4 2 3 (subtotal: -9)
<strong>Total:</strong> 48
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 10 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+5d8r2^3 Results:</strong> <s>3</s> 6 5 7 <s>3</s> (subtotal: 18)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 4 1 3 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 29
---
- Output for 7.3.0
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 10 (subtotal: -10)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -5
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>5</s> 15 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 4 2 4 <s>2</s> (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 13 <s>1</s> <s>4</s> 19 19 (subtotal: 51)
<strong>Total:</strong> 51
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>5</s> 1 3 <s>5</s> <s>4</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 3 <s>16</s> (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 1 1 (subtotal: 3)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>2</s> 17 <s>5</s> (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 5 5 5 (subtotal: 15)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 8 (subtotal: -8)
<strong>Total:</strong> -8
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 25
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>+1d6 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 11 10 5 1 12 (subtotal: 39)
<strong>-3d6 Results:</strong> 6 5 6 (subtotal: -17)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>+5d8r2^3 Results:</strong> 8 <s>4</s> 8 <s>4</s> 7 (subtotal: 23)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 3 4 1 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 29
---
- Output for 7.2.34
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 9 (subtotal: -9)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -4
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>12</s> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 5 <s>3</s> 5 4 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 14 18 <s>6</s> 17 <s>12</s> (subtotal: 49)
<strong>Total:</strong> 49
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 3 <s>5</s> <s>6</s> <s>4</s> 1 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 13 <s>18</s> (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 1 2 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>13</s> 15 <s>5</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 5 3 (subtotal: 14)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 17 (subtotal: -17)
<strong>Total:</strong> -17
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+1d6 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 16 9 8 3 14 (subtotal: 50)
<strong>-3d6 Results:</strong> 3 5 2 (subtotal: -10)
<strong>Total:</strong> 40
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 15 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5d8r2^3 Results:</strong> <s>5</s> 8 8 6 <s>5</s> (subtotal: 22)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 1 (subtotal: -1)
<strong>+3d4 Results:</strong> 1 3 3 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 23
---
- Output for 7.2.33
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 3 (subtotal: -3)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 18 <s>11</s> (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>3</s> 6 4 6 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 19 <s>2</s> <s>8</s> 12 18 (subtotal: 49)
<strong>Total:</strong> 49
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 5 <s>8</s> <s>5</s> <s>5</s> 4 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 7 <s>14</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 3 4 (subtotal: 11)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>7</s> 19 <s>6</s> (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 4 3 2 (subtotal: 9)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 15 (subtotal: -15)
<strong>Total:</strong> -15
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+1d6 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 8 12 18 8 11 (subtotal: 57)
<strong>-3d6 Results:</strong> 6 4 6 (subtotal: -16)
<strong>Total:</strong> 41
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+5d8r2^3 Results:</strong> 8 7 <s>3</s> <s>3</s> 5 (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 5 (subtotal: -5)
<strong>+3d4 Results:</strong> 1 2 4 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 31
---
- Output for 7.2.32
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 19 (subtotal: -19)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -14
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>11</s> 18 (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 <s>2</s> 6 5 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>13</s> <s>12</s> 20 19 18 (subtotal: 57)
<strong>Total:</strong> 57
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 2 <s>5</s> <s>3</s> 1 <s>8</s> (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 18 <s>19</s> (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 1 2 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 16 <s>7</s> <s>6</s> (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 6 4 (subtotal: 12)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 18 (subtotal: -18)
<strong>Total:</strong> -18
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>+1d6 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 2 15 14 5 3 (subtotal: 39)
<strong>-3d6 Results:</strong> 2 5 2 (subtotal: -9)
<strong>Total:</strong> 30
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 10 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5d8r2^3 Results:</strong> 6 <s>4</s> 7 6 <s>3</s> (subtotal: 19)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 3 1 2 (subtotal: 6)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 29
---
- Output for 7.2.31
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 20 (subtotal: -20)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -15
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 18 <s>13</s> (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 5 4 <s>3</s> 4 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 14 14 14 <s>10</s> <s>4</s> (subtotal: 42)
<strong>Total:</strong> 42
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>6</s> <s>7</s> 4 <s>6</s> 2 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>20</s> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 2 4 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>12</s> <s>14</s> 16 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 6 2 (subtotal: 10)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 4 (subtotal: -4)
<strong>Total:</strong> -4
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+1d6 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 20 7 17 3 11 (subtotal: 58)
<strong>-3d6 Results:</strong> 1 4 1 (subtotal: -6)
<strong>Total:</strong> 52
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>+5d8r2^3 Results:</strong> 5 <s>3</s> 8 8 <s>4</s> (subtotal: 21)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 2 4 3 (subtotal: 9)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 18
---
- Output for 7.2.30
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 13 (subtotal: -13)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -8
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 5 <s>4</s> (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>2</s> 6 5 5 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>9</s> <s>10</s> 15 11 19 (subtotal: 45)
<strong>Total:</strong> 45
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 2 5 <s>7</s> <s>5</s> <s>8</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>16</s> 14 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 1 3 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>13</s> <s>2</s> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 4 3 3 (subtotal: 10)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 18 (subtotal: -18)
<strong>Total:</strong> -18
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>+1d6 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 2 18 6 16 20 (subtotal: 62)
<strong>-3d6 Results:</strong> 3 2 5 (subtotal: -10)
<strong>Total:</strong> 52
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 7 (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>+5d8r2^3 Results:</strong> 7 8 8 <s>4</s> <s>7</s> (subtotal: 23)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 3 3 2 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 29
---
- Output for 7.2.29
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 16 (subtotal: -16)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -11
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 14 <s>13</s> (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>2</s> 3 5 3 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 6 15 <s>3</s> 15 <s>4</s> (subtotal: 36)
<strong>Total:</strong> 36
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> <s>6</s> 6 5 <s>6</s> (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>13</s> 10 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 4 2 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>10</s> <s>3</s> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 5 2 3 (subtotal: 10)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 12 (subtotal: -12)
<strong>Total:</strong> -12
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+1d6 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 11 4 3 7 1 (subtotal: 26)
<strong>-3d6 Results:</strong> 4 3 3 (subtotal: -10)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 15 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5d8r2^3 Results:</strong> 6 6 <s>5</s> <s>4</s> 6 (subtotal: 18)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 5 (subtotal: -5)
<strong>+3d4 Results:</strong> 4 3 2 (subtotal: 9)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 30
---
- Output for 7.2.28
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 9 (subtotal: -9)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -4
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>3</s> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 <s>3</s> 6 5 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 17 <s>3</s> 20 15 <s>14</s> (subtotal: 52)
<strong>Total:</strong> 52
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 3 <s>8</s> <s>6</s> 2 <s>6</s> (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 1 <s>4</s> (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 1 2 (subtotal: 6)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>1</s> 10 <s>2</s> (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 4 2 (subtotal: 8)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 16 (subtotal: -16)
<strong>Total:</strong> -16
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+1d6 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 8 4 20 17 14 (subtotal: 63)
<strong>-3d6 Results:</strong> 3 1 3 (subtotal: -7)
<strong>Total:</strong> 56
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+5d8r2^3 Results:</strong> 8 <s>3</s> 7 5 <s>4</s> (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 2 1 1 (subtotal: 4)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 19
---
- Output for 7.2.27
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 7 (subtotal: -7)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -2
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 15 <s>6</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 5 <s>2</s> 3 6 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>3</s> 20 <s>7</s> 20 8 (subtotal: 48)
<strong>Total:</strong> 48
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> <s>5</s> 4 <s>5</s> 3 (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 7 <s>8</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 2 2 (subtotal: 6)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>4</s> 9 <s>7</s> (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 4 6 6 (subtotal: 16)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 1 (subtotal: -1)
<strong>Total:</strong> -1
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 19 (subtotal: 19)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 24
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+1d6 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 16 7 5 16 17 (subtotal: 61)
<strong>-3d6 Results:</strong> 5 4 5 (subtotal: -14)
<strong>Total:</strong> 47
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5d8r2^3 Results:</strong> 7 <s>3</s> 7 8 <s>5</s> (subtotal: 22)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 2 (subtotal: -2)
<strong>+3d4 Results:</strong> 4 4 3 (subtotal: 11)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 37
---
- Output for 7.2.26
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 13 (subtotal: -13)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -8
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 16 <s>13</s> (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 6 3 6 <s>2</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 13 <s>7</s> 10 <s>9</s> 18 (subtotal: 41)
<strong>Total:</strong> 41
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> <s>8</s> 3 <s>6</s> 3 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>17</s> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 2 3 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 19 <s>1</s> <s>16</s> (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 3 5 4 (subtotal: 12)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 16 (subtotal: -16)
<strong>Total:</strong> -16
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 9 17 15 11 8 (subtotal: 60)
<strong>-3d6 Results:</strong> 4 5 5 (subtotal: -14)
<strong>Total:</strong> 46
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 18 (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>+5d8r2^3 Results:</strong> <s>3</s> 8 <s>3</s> 7 4 (subtotal: 19)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 2 (subtotal: -2)
<strong>+3d4 Results:</strong> 4 4 4 (subtotal: 12)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 21
---
- Output for 7.2.25
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 15 (subtotal: -15)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -10
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>3</s> 12 (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>2</s> 6 6 4 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>16</s> 17 <s>12</s> 19 20 (subtotal: 56)
<strong>Total:</strong> 56
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 1 1 <s>6</s> <s>8</s> <s>5</s> (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 6 <s>20</s> (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 4 2 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>15</s> <s>1</s> 18 (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 6 2 (subtotal: 10)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 12 (subtotal: -12)
<strong>Total:</strong> -12
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+1d6 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 9 13 17 4 20 (subtotal: 63)
<strong>-3d6 Results:</strong> 2 6 1 (subtotal: -9)
<strong>Total:</strong> 54
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 8 (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>+5d8r2^3 Results:</strong> 5 <s>5</s> <s>3</s> 6 8 (subtotal: 19)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 5 (subtotal: -5)
<strong>+3d4 Results:</strong> 1 3 4 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 22
---
- Output for 7.2.24
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 3 (subtotal: -3)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>6</s> 7 (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>2</s> 6 5 4 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 18 16 <s>8</s> 18 <s>1</s> (subtotal: 52)
<strong>Total:</strong> 52
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> 1 <s>5</s> 2 <s>5</s> (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 8 <s>13</s> (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 1 1 (subtotal: 6)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>13</s> 16 <s>8</s> (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 4 6 6 (subtotal: 16)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 14 (subtotal: -14)
<strong>Total:</strong> -14
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+1d6 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 10 12 3 1 9 (subtotal: 35)
<strong>-3d6 Results:</strong> 5 3 4 (subtotal: -12)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+5d8r2^3 Results:</strong> 7 <s>4</s> 7 8 <s>6</s> (subtotal: 22)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 2 (subtotal: -2)
<strong>+3d4 Results:</strong> 3 4 3 (subtotal: 10)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 28
---
- Output for 7.2.23
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 6 (subtotal: -6)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -1
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>15</s> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 5 2 <s>2</s> (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 16 17 <s>12</s> <s>7</s> 19 (subtotal: 52)
<strong>Total:</strong> 52
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>5</s> <s>7</s> 2 <s>6</s> 1 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 10 <s>14</s> (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 3 4 (subtotal: 9)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>5</s> 7 <s>2</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 3 4 6 (subtotal: 13)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 3 (subtotal: -3)
<strong>Total:</strong> -3
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>+1d6 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 9 20 6 16 14 (subtotal: 65)
<strong>-3d6 Results:</strong> 5 6 1 (subtotal: -12)
<strong>Total:</strong> 53
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5d8r2^3 Results:</strong> <s>5</s> 8 <s>6</s> 8 7 (subtotal: 23)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 3 4 2 (subtotal: 9)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 34
---
- Output for 7.2.22
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 4 (subtotal: -4)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 17 <s>11</s> (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 <s>2</s> 3 3 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 15 5 3 <s>3</s> <s>1</s> (subtotal: 23)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 3 <s>3</s> 2 <s>3</s> <s>7</s> (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 3 <s>14</s> (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 2 2 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>4</s> <s>12</s> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 3 4 (subtotal: 9)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 17 (subtotal: -17)
<strong>Total:</strong> -17
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>+1d6 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 4 8 4 6 19 (subtotal: 41)
<strong>-3d6 Results:</strong> 6 5 3 (subtotal: -14)
<strong>Total:</strong> 27
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>+5d8r2^3 Results:</strong> <s>3</s> 7 6 5 <s>5</s> (subtotal: 18)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 2 (subtotal: -2)
<strong>+3d4 Results:</strong> 3 4 4 (subtotal: 11)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 20
---
- Output for 7.2.21
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 2 (subtotal: -2)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 20 <s>3</s> (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 2 2 <s>2</s> 6 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>2</s> 20 <s>11</s> 15 13 (subtotal: 48)
<strong>Total:</strong> 48
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> 5 3 <s>8</s> <s>6</s> (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 7 <s>17</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 3 3 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>5</s> <s>1</s> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 3 6 (subtotal: 15)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 3 (subtotal: -3)
<strong>Total:</strong> -3
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 11 6 2 9 14 (subtotal: 42)
<strong>-3d6 Results:</strong> 2 6 5 (subtotal: -13)
<strong>Total:</strong> 29
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 14 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5d8r2^3 Results:</strong> 7 <s>3</s> 4 <s>3</s> 6 (subtotal: 17)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 5 (subtotal: -5)
<strong>+3d4 Results:</strong> 1 4 2 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 14
---
- Output for 7.2.20
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 16 (subtotal: -16)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -11
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 7 <s>7</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>2</s> 5 6 6 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>7</s> 10 19 18 <s>6</s> (subtotal: 47)
<strong>Total:</strong> 47
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 4 <s>7</s> <s>8</s> <s>6</s> 4 (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 7 <s>10</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 1 4 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>7</s> 19 <s>2</s> (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 6 5 (subtotal: 13)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 10 (subtotal: -10)
<strong>Total:</strong> -10
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 19 (subtotal: 19)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 24
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 11 19 19 1 13 (subtotal: 63)
<strong>-3d6 Results:</strong> 3 4 5 (subtotal: -12)
<strong>Total:</strong> 51
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5d8r2^3 Results:</strong> 8 7 6 <s>5</s> <s>5</s> (subtotal: 21)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 1 2 2 (subtotal: 5)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 28
---
- Output for 7.2.19
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 3 (subtotal: -3)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 8 <s>7</s> (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 4 4 <s>2</s> (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 10 <s>1</s> 9 10 <s>5</s> (subtotal: 29)
<strong>Total:</strong> 29
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 3 <s>4</s> 3 <s>4</s> <s>7</s> (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>14</s> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 2 3 (subtotal: 6)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 15 <s>10</s> <s>2</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 3 2 (subtotal: 7)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 5 (subtotal: -5)
<strong>Total:</strong> -5
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+1d6 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 20 5 10 7 5 (subtotal: 47)
<strong>-3d6 Results:</strong> 5 6 3 (subtotal: -14)
<strong>Total:</strong> 33
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>+5d8r2^3 Results:</strong> 7 <s>4</s> 8 8 <s>6</s> (subtotal: 23)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 5 (subtotal: -5)
<strong>+3d4 Results:</strong> 1 1 3 (subtotal: 5)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 16
---
- Output for 7.2.18
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 19 (subtotal: -19)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -14
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 19 <s>3</s> (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>3</s> 4 4 5 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>1</s> 15 8 <s>6</s> 13 (subtotal: 36)
<strong>Total:</strong> 36
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> 5 1 <s>5</s> <s>6</s> (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 3 <s>13</s> (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 4 1 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 11 <s>4</s> <s>3</s> (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 4 3 (subtotal: 9)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 4 (subtotal: -4)
<strong>Total:</strong> -4
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+1d6 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 14 9 19 17 4 (subtotal: 63)
<strong>-3d6 Results:</strong> 2 5 4 (subtotal: -11)
<strong>Total:</strong> 52
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5d8r2^3 Results:</strong> 4 <s>3</s> <s>3</s> 5 5 (subtotal: 14)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 2 (subtotal: -2)
<strong>+3d4 Results:</strong> 2 1 4 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 24
---
- Output for 7.2.17
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 16 (subtotal: -16)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -11
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 20 <s>8</s> (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 4 6 <s>3</s> (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 18 12 <s>6</s> <s>4</s> 17 (subtotal: 47)
<strong>Total:</strong> 47
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>5</s> <s>6</s> 4 3 <s>7</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 1 <s>10</s> (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 4 2 (subtotal: 9)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 14 <s>5</s> <s>10</s> (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 4 3 (subtotal: 9)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 7 (subtotal: -7)
<strong>Total:</strong> -7
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+1d6 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 17 18 7 4 10 (subtotal: 56)
<strong>-3d6 Results:</strong> 2 3 6 (subtotal: -11)
<strong>Total:</strong> 45
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+5d8r2^3 Results:</strong> 8 8 8 <s>6</s> <s>4</s> (subtotal: 24)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 2 2 1 (subtotal: 5)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 22
---
- Output for 7.2.16
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 15 (subtotal: -15)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -10
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>12</s> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 4 6 <s>2</s> 3 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 9 7 <s>3</s> <s>7</s> 14 (subtotal: 30)
<strong>Total:</strong> 30
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 1 <s>5</s> 2 <s>6</s> <s>6</s> (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>17</s> 14 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 4 4 (subtotal: 9)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>2</s> 4 <s>2</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 2 3 (subtotal: 7)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 2 (subtotal: -2)
<strong>Total:</strong> -2
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 25
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>+1d6 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 9 15 20 8 20 (subtotal: 72)
<strong>-3d6 Results:</strong> 6 3 1 (subtotal: -10)
<strong>Total:</strong> 62
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+5d8r2^3 Results:</strong> <s>3</s> 8 6 <s>3</s> 7 (subtotal: 21)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 3 1 4 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 22
---
- Output for 7.2.15
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 8 (subtotal: -8)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -3
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>5</s> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 <s>2</s> 6 6 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>6</s> 9 18 <s>4</s> 8 (subtotal: 35)
<strong>Total:</strong> 35
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 4 <s>8</s> 4 <s>6</s> <s>4</s> (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>17</s> 2 (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 4 1 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>2</s> <s>10</s> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 4 2 5 (subtotal: 11)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 17 (subtotal: -17)
<strong>Total:</strong> -17
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 13 7 16 1 14 (subtotal: 51)
<strong>-3d6 Results:</strong> 5 6 3 (subtotal: -14)
<strong>Total:</strong> 37
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5d8r2^3 Results:</strong> 3 <s>3</s> 7 <s>3</s> 4 (subtotal: 14)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 4 1 4 (subtotal: 9)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 25
---
- Output for 7.2.14
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 2 (subtotal: -2)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>2</s> 14 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 6 2 <s>2</s> 6 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 8 18 <s>8</s> <s>6</s> 15 (subtotal: 41)
<strong>Total:</strong> 41
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 1 <s>8</s> 3 <s>4</s> <s>5</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 8 <s>13</s> (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 3 1 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>8</s> <s>15</s> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 4 6 (subtotal: 12)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 14 (subtotal: -14)
<strong>Total:</strong> -14
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 21
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 7 17 5 20 11 (subtotal: 60)
<strong>-3d6 Results:</strong> 4 2 3 (subtotal: -9)
<strong>Total:</strong> 51
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 16 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5d8r2^3 Results:</strong> <s>6</s> 7 7 <s>4</s> 8 (subtotal: 22)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 2 (subtotal: -2)
<strong>+3d4 Results:</strong> 1 4 3 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 31
---
- Output for 7.2.13
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 14 (subtotal: -14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -9
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>7</s> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 4 4 <s>2</s> (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 18 <s>2</s> <s>6</s> 7 7 (subtotal: 32)
<strong>Total:</strong> 32
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> 5 <s>8</s> 1 <s>7</s> (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 16 <s>18</s> (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 2 4 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>5</s> <s>1</s> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 5 5 5 (subtotal: 15)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 6 (subtotal: -6)
<strong>Total:</strong> -6
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+1d6 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 3 18 2 10 10 (subtotal: 43)
<strong>-3d6 Results:</strong> 3 6 4 (subtotal: -13)
<strong>Total:</strong> 30
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5d8r2^3 Results:</strong> <s>4</s> <s>3</s> 5 8 7 (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 4 2 4 (subtotal: 10)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 30
---
- Output for 7.2.12
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 13 (subtotal: -13)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -8
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 19 <s>17</s> (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>2</s> 6 6 5 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 8 9 <s>7</s> 11 <s>8</s> (subtotal: 28)
<strong>Total:</strong> 28
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>5</s> 3 <s>4</s> <s>6</s> 2 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 7 <s>11</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 2 3 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 20 <s>7</s> <s>13</s> (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 4 4 (subtotal: 14)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 3 (subtotal: -3)
<strong>Total:</strong> -3
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+1d6 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 16 3 19 7 4 (subtotal: 49)
<strong>-3d6 Results:</strong> 5 2 5 (subtotal: -12)
<strong>Total:</strong> 37
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 8 (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+5d8r2^3 Results:</strong> <s>4</s> 6 5 <s>3</s> 5 (subtotal: 16)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 3 3 2 (subtotal: 8)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 27
---
- Output for 7.2.11
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 13 (subtotal: -13)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -8
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>10</s> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 5 <s>4</s> 6 5 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 15 <s>3</s> <s>4</s> 18 15 (subtotal: 48)
<strong>Total:</strong> 48
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> 4 1 <s>4</s> <s>8</s> (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>6</s> 2 (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 4 2 (subtotal: 9)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>3</s> <s>1</s> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 6 3 (subtotal: 15)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 8 (subtotal: -8)
<strong>Total:</strong> -8
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 21
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 8 17 19 20 2 (subtotal: 66)
<strong>-3d6 Results:</strong> 6 4 4 (subtotal: -14)
<strong>Total:</strong> 52
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>+5d8r2^3 Results:</strong> 6 <s>3</s> <s>4</s> 8 8 (subtotal: 22)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 1 (subtotal: -1)
<strong>+3d4 Results:</strong> 3 4 4 (subtotal: 11)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 36
---
- Output for 7.2.10
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 9 (subtotal: -9)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -4
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>7</s> 15 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 3 <s>2</s> 4 (subtotal: 10)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 18 19 <s>14</s> <s>17</s> 18 (subtotal: 55)
<strong>Total:</strong> 55
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 4 <s>6</s> <s>6</s> 1 <s>6</s> (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 3 <s>15</s> (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 1 1 (subtotal: 4)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>13</s> <s>16</s> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 4 4 3 (subtotal: 11)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 6 (subtotal: -6)
<strong>Total:</strong> -6
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>+1d6 Results:</strong> 2 (subtotal: 2)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 17 5 4 18 13 (subtotal: 57)
<strong>-3d6 Results:</strong> 4 4 3 (subtotal: -11)
<strong>Total:</strong> 46
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>+5d8r2^3 Results:</strong> <s>4</s> <s>5</s> 7 7 6 (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 2 (subtotal: -2)
<strong>+3d4 Results:</strong> 2 2 3 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 29
---
- Output for 7.2.9
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 2 (subtotal: -2)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 20 <s>6</s> (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>2</s> 5 3 5 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>4</s> 5 12 9 <s>4</s> (subtotal: 26)
<strong>Total:</strong> 26
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> 3 5 <s>6</s> <s>6</s> (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>19</s> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 4 4 (subtotal: 12)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 16 <s>12</s> <s>16</s> (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 5 6 (subtotal: 13)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 5 (subtotal: -5)
<strong>Total:</strong> -5
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+1d6 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 4 15 1 6 19 (subtotal: 45)
<strong>-3d6 Results:</strong> 6 4 4 (subtotal: -14)
<strong>Total:</strong> 31
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 18 (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>+5d8r2^3 Results:</strong> 8 6 <s>4</s> 6 <s>6</s> (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 1 (subtotal: -1)
<strong>+3d4 Results:</strong> 4 3 4 (subtotal: 11)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 34
---
- Output for 7.2.8
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 12 (subtotal: -12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -7
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 18 <s>15</s> (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 4 6 4 <s>4</s> (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 11 <s>10</s> 14 15 <s>8</s> (subtotal: 40)
<strong>Total:</strong> 40
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>8</s> <s>5</s> 4 1 <s>4</s> (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 11 <s>11</s> (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 1 4 4 (subtotal: 9)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>2</s> 20 <s>17</s> (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 4 3 3 (subtotal: 10)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 3 (subtotal: -3)
<strong>Total:</strong> -3
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 6 (subtotal: 6)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 4 5 11 16 15 (subtotal: 51)
<strong>-3d6 Results:</strong> 5 6 3 (subtotal: -14)
<strong>Total:</strong> 37
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+5d8r2^3 Results:</strong> <s>3</s> 5 6 <s>5</s> 8 (subtotal: 19)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 5 (subtotal: -5)
<strong>+3d4 Results:</strong> 2 3 1 (subtotal: 6)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 22
---
- Output for 7.2.7
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 12 (subtotal: -12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -7
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 18 <s>9</s> (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 6 5 4 <s>4</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 14 20 <s>12</s> <s>4</s> 20 (subtotal: 54)
<strong>Total:</strong> 54
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 3 <s>6</s> <s>6</s> 3 <s>3</s> (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 6 <s>11</s> (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 4 2 1 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>10</s> 18 <s>13</s> (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 5 2 3 (subtotal: 10)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 11 (subtotal: -11)
<strong>Total:</strong> -11
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 1 (subtotal: 1)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 19 7 12 14 13 (subtotal: 65)
<strong>-3d6 Results:</strong> 1 3 3 (subtotal: -7)
<strong>Total:</strong> 58
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 1 (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 15 (subtotal: 15)
<strong>+5d8r2^3 Results:</strong> 6 7 <s>5</s> 7 <s>3</s> (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 1 (subtotal: -1)
<strong>+3d4 Results:</strong> 2 2 3 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 32
---
- Output for 7.2.6
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 6 (subtotal: -6)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -1
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>2</s> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 <s>3</s> 5 6 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 13 <s>9</s> 13 <s>8</s> 18 (subtotal: 44)
<strong>Total:</strong> 44
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>5</s> <s>8</s> 1 1 <s>3</s> (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> <s>16</s> 2 (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 3 3 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>4</s> <s>5</s> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 3 6 3 (subtotal: 12)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 15 (subtotal: -15)
<strong>Total:</strong> -15
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 9 (subtotal: 9)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+1d6 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 9 11 4 1 1 (subtotal: 26)
<strong>-3d6 Results:</strong> 6 6 3 (subtotal: -15)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 9 (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 2 (subtotal: 2)
<strong>+5d8r2^3 Results:</strong> <s>6</s> 8 <s>5</s> 8 8 (subtotal: 24)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 2 (subtotal: -2)
<strong>+3d4 Results:</strong> 1 2 3 (subtotal: 6)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 21
---
- Output for 7.2.5
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 11 (subtotal: -11)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -6
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 18 <s>5</s> (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 6 5 4 <s>3</s> (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 9 <s>3</s> 20 <s>3</s> 6 (subtotal: 35)
<strong>Total:</strong> 35
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 2 3 <s>5</s> <s>8</s> <s>5</s> (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 9 <s>12</s> (subtotal: 9)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 1 3 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 16 <s>12</s> <s>13</s> (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 5 6 3 (subtotal: 14)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 1 (subtotal: -1)
<strong>Total:</strong> -1
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+1d6 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 8 5 17 9 5 (subtotal: 44)
<strong>-3d6 Results:</strong> 6 6 1 (subtotal: -13)
<strong>Total:</strong> 31
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 12 (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+5d8r2^3 Results:</strong> <s>3</s> 8 <s>3</s> 7 4 (subtotal: 19)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 1 1 3 (subtotal: 5)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 20
---
- Output for 7.2.4
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 13 (subtotal: -13)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -8
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 8 <s>1</s> (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 3 5 <s>2</s> 4 (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>3</s> <s>4</s> 9 6 11 (subtotal: 26)
<strong>Total:</strong> 26
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> <s>6</s> 1 <s>5</s> <s>4</s> 2 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 12 <s>13</s> (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 1 3 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>1</s> <s>1</s> 19 (subtotal: 19)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 3 5 6 (subtotal: 14)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 17 (subtotal: -17)
<strong>Total:</strong> -17
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 23
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+1d6 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 14 9 16 20 3 (subtotal: 62)
<strong>-3d6 Results:</strong> 2 2 6 (subtotal: -10)
<strong>Total:</strong> 52
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 6 (subtotal: 6)
<strong>Total:</strong> 6
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 18 (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5d8r2^3 Results:</strong> 8 8 <s>5</s> <s>3</s> 6 (subtotal: 22)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 1 1 3 (subtotal: 5)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 26
---
- Output for 7.2.3
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 18 (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 5 (subtotal: -5)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 18 <s>9</s> (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 4 6 4 <s>3</s> (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>1</s> <s>2</s> 20 3 5 (subtotal: 28)
<strong>Total:</strong> 28
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 4 3 <s>6</s> <s>6</s> <s>6</s> (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 4 <s>19</s> (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 2 2 (subtotal: 7)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 13 <s>6</s> <s>1</s> (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 6 4 (subtotal: 12)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 12 (subtotal: -12)
<strong>Total:</strong> -12
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+1d6 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 3 2 12 3 19 (subtotal: 39)
<strong>-3d6 Results:</strong> 1 5 6 (subtotal: -12)
<strong>Total:</strong> 27
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 4
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 14 (subtotal: 14)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+5d8r2^3 Results:</strong> 8 <s>3</s> <s>5</s> 7 7 (subtotal: 22)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 2 2 3 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 22
---
- Output for 7.2.2
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 15 (subtotal: -15)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -10
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> 20 <s>18</s> (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> <s>2</s> 5 6 4 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> <s>2</s> <s>9</s> 19 18 11 (subtotal: 48)
<strong>Total:</strong> 48
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 2 <s>7</s> <s>8</s> 6 <s>6</s> (subtotal: 8)
<strong>Total:</strong> 8
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 3 <s>14</s> (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 3 4 (subtotal: 9)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 16 <s>6</s> <s>15</s> (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 6 5 4 (subtotal: 15)
<strong>+1d4r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 20 (subtotal: -20)
<strong>Total:</strong> -20
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 14 (subtotal: 14)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 19
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 7 (subtotal: 7)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 8 (subtotal: 8)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 16 16 17 15 5 (subtotal: 69)
<strong>-3d6 Results:</strong> 1 5 2 (subtotal: -8)
<strong>Total:</strong> 61
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 16 (subtotal: 16)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5d8r2^3 Results:</strong> 6 7 <s>4</s> 8 <s>4</s> (subtotal: 21)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 4 (subtotal: -4)
<strong>+3d4 Results:</strong> 3 1 1 (subtotal: 5)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 17
---
- Output for 7.2.1
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 13 (subtotal: 13)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 3 (subtotal: -3)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>5</s> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 4 3 5 <s>3</s> (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 4 <s>2</s> 12 <s>1</s> 20 (subtotal: 36)
<strong>Total:</strong> 36
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 1 <s>4</s> <s>5</s> 1 <s>6</s> (subtotal: 2)
<strong>Total:</strong> 2
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 1 <s>4</s> (subtotal: 1)
<strong>Total:</strong> 1
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 2 2 4 (subtotal: 8)
<strong>Total:</strong> 13
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> <s>2</s> <s>1</s> 11 (subtotal: 11)
<strong>Total:</strong> 11
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 4 4 5 (subtotal: 13)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 17
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 10 (subtotal: -10)
<strong>Total:</strong> -10
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 16 (subtotal: 16)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 21
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 5 (subtotal: 5)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 10
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 11 (subtotal: 11)
<strong>+1d6 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 14
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 16 20 1 8 20 (subtotal: 65)
<strong>-3d6 Results:</strong> 3 5 2 (subtotal: -10)
<strong>Total:</strong> 55
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 5
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 15 (subtotal: 15)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 12 (subtotal: 12)
<strong>+5d8r2^3 Results:</strong> <s>3</s> 6 5 7 <s>3</s> (subtotal: 18)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 6 (subtotal: -6)
<strong>+3d4 Results:</strong> 1 2 2 (subtotal: 5)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 20
---
- Output for 7.2.0
- <strong>Dice Roll:</strong> 1d20
<strong>1d20 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> -1d20+5
<strong>-1d20 Results:</strong> 13 (subtotal: -13)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> -8
---
<strong>Dice Roll:</strong> d20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 2d20^1
<strong>2d20^1 Results:</strong> <s>9</s> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 4d6r1^3
<strong>4d6r1^3 Results:</strong> 2 6 <s>2</s> 4 (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5d20^3
<strong>5d20^3 Results:</strong> 7 <s>5</s> 18 13 <s>7</s> (subtotal: 38)
<strong>Total:</strong> 38
---
<strong>Dice Roll:</strong> 5d8v2
<strong>5d8v2 Results:</strong> 2 <s>2</s> 1 <s>5</s> <s>6</s> (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 2d20v1
<strong>2d20v1 Results:</strong> 12 <s>12</s> (subtotal: 12)
<strong>Total:</strong> 12
---
<strong>Dice Roll:</strong> 5+3d4
<strong>5 Results:</strong> (subtotal: 5)
<strong>+3d4 Results:</strong> 3 3 4 (subtotal: 10)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 3d20^1
<strong>3d20^1 Results:</strong> 18 <s>8</s> <s>9</s> (subtotal: 18)
<strong>Total:</strong> 18
---
<strong>Dice Roll:</strong> 3d6r1+1d4r2
<strong>3d6r1 Results:</strong> 2 4 6 (subtotal: 12)
<strong>+1d4r2 Results:</strong> 4 (subtotal: 4)
<strong>Total:</strong> 16
---
<strong>Dice Roll:</strong> -1d20
<strong>-1d20 Results:</strong> 14 (subtotal: -14)
<strong>Total:</strong> -14
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 10 (subtotal: 10)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 15
---
<strong>Dice Roll:</strong> 1d20+5
<strong>1d20 Results:</strong> 4 (subtotal: 4)
<strong>+5 Results:</strong> (subtotal: 5)
<strong>Total:</strong> 9
---
<strong>Dice Roll:</strong> 1d-20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+1d6
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+1d6 Results:</strong> 5 (subtotal: 5)
<strong>Total:</strong> 22
---
<strong>Dice Roll:</strong> 5d20-3d6
<strong>5d20 Results:</strong> 7 6 12 18 18 (subtotal: 61)
<strong>-3d6 Results:</strong> 2 1 1 (subtotal: -4)
<strong>Total:</strong> 57
---
<strong>Dice Roll:</strong> 1d6r2
<strong>1d6r2 Results:</strong> 3 (subtotal: 3)
<strong>Total:</strong> 3
---
<strong>Dice Roll:</strong> 5d6r-6
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 3d20^1v1
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r30
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r20
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20r19
<strong>1d20r19 Results:</strong> 20 (subtotal: 20)
<strong>Total:</strong> 20
---
<strong>Dice Roll:</strong> 1d20v2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20v1
<strong>1d20v1 Results:</strong> 7 (subtotal: 7)
<strong>Total:</strong> 7
---
<strong>Dice Roll:</strong> 1d20^2
Invalid Roll Code
<strong>Total:</strong> 0
---
<strong>Dice Roll:</strong> 1d20+5d8r2^3-5-1d6+3d4+2-4+6-8
<strong>1d20 Results:</strong> 17 (subtotal: 17)
<strong>+5d8r2^3 Results:</strong> <s>5</s> 7 7 <s>5</s> 6 (subtotal: 20)
<strong>-5 Results:</strong> (subtotal: -5)
<strong>-1d6 Results:</strong> 2 (subtotal: -2)
<strong>+3d4 Results:</strong> 3 3 1 (subtotal: 7)
<strong>+2 Results:</strong> (subtotal: 2)
<strong>-4 Results:</strong> (subtotal: -4)
<strong>+6 Results:</strong> (subtotal: 6)
<strong>-8 Results:</strong> (subtotal: -8)
<strong>Total:</strong> 33
---
preferences:
67.46 ms | 836 KiB | 5 Q