You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.8 KiB
74 lines
2.8 KiB
3 weeks ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>JJMumbleBot - Randomizer Plugin</title>
|
||
|
<link rel="stylesheet" href="https://bootswatch.com/4/darkly/bootstrap.css" crossorigin="anonymous">
|
||
|
<link rel="stylesheet" href="https://duckboss.github.io/JJMumbleBot/css/content-pages.css" crossorigin="anonymous">
|
||
|
<noscript>Please enable JavaScript in your browser!</noscript>
|
||
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||
|
<script src="https://duckboss.github.io/JJMumbleBot/js/insert_html.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<nav id="table_of_contents"></nav>
|
||
|
<div class="main-content">
|
||
|
<h2 id="page-title">Randomizer Plugin</h2>
|
||
|
<p>
|
||
|
This is a built-in extension plugin that follows the plugin template system. <br>
|
||
|
It lets mumble users do random dice rolls or coin flips.
|
||
|
</p>
|
||
|
|
||
|
<h3>Usage:</h3>
|
||
|
<code>!customroll 'number_of_dice' 'dice_faces'</code>: A custom dice roll with multiple dice and custom face counts.<br>
|
||
|
<code>!coinflip</code>: A coin flip 2-sided roll.<br>
|
||
|
<code>!d4roll</code>: A standard 4-sided dice roll.<br>
|
||
|
<code>!d6roll</code>: A standard 6-sided dice roll.<br>
|
||
|
<code>!d8roll</code>: A standard 8-sided dice roll.<br>
|
||
|
<code>!d10roll</code>: A standard 10-sided dice roll.<br>
|
||
|
<code>!d12roll</code>: A standard 12-sided dice roll.<br>
|
||
|
<code>!d16roll</code>: A standard 16-sided dice roll.<br>
|
||
|
<code>!d20roll</code>: A standard 20-sided dice roll.<br>
|
||
|
<code>!d100roll</code>: A standard 100-sided dice roll.
|
||
|
|
||
|
<div>
|
||
|
<details>
|
||
|
<summary>Plugin Metadata</summary>
|
||
|
<pre><code>
|
||
|
[Plugin Information]
|
||
|
PluginVersion = 5.0.0
|
||
|
PluginName = Randomizer
|
||
|
PluginDescription = A randomizer plugin.
|
||
|
PluginLanguage = EN
|
||
|
PluginCommands: [
|
||
|
"customroll",
|
||
|
"coinflip",
|
||
|
"d4roll",
|
||
|
"d6roll",
|
||
|
"d8roll",
|
||
|
"d10roll",
|
||
|
"d12roll",
|
||
|
"d16roll",
|
||
|
"d20roll",
|
||
|
"d100roll"
|
||
|
]
|
||
|
|
||
|
[Plugin Settings]
|
||
|
; List commands that need the core thread to wait for completion.
|
||
|
; This may include processes that require multiple commands in succession.
|
||
|
; For example: [Youtube Plugin - !yt -> !p] process requires 2 commands in that order.
|
||
|
ThreadWaitForCommands: []
|
||
|
UseSingleThread = False
|
||
|
|
||
|
[Plugin Type]
|
||
|
ControllablePlugin = True
|
||
|
AudioPlugin = False
|
||
|
ImagePlugin = False
|
||
|
CorePlugin = False
|
||
|
ExtensionPlugin = True
|
||
|
</code></pre>
|
||
|
</details>
|
||
|
</div>
|
||
|
</div>
|
||
|
<footer></footer>
|
||
|
</body>
|
||
|
</html>
|