Randomizer Plugin

This is a built-in extension plugin that follows the plugin template system.
It lets mumble users do random dice rolls or coin flips.

Usage:

!customroll 'number_of_dice' 'dice_faces': A custom dice roll with multiple dice and custom face counts.
!coinflip: A coin flip 2-sided roll.
!d4roll: A standard 4-sided dice roll.
!d6roll: A standard 6-sided dice roll.
!d8roll: A standard 8-sided dice roll.
!d10roll: A standard 10-sided dice roll.
!d12roll: A standard 12-sided dice roll.
!d16roll: A standard 16-sided dice roll.
!d20roll: A standard 20-sided dice roll.
!d100roll: A standard 100-sided dice roll.
Plugin Metadata

    [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