Skip Navigation

What are the limits of the Random Dice Icon Plugin?

perchance.org Random Dice Icon Plugin

Get Random Dice Icons - Revamped (Allows Getting the Numerical Values of the Generated Icons)

Random Dice Icon Plugin

What can I do and not do with the plugin? For example, I want to add modifiers to a roll. how can I do that if it is possible? I know for the normal dice plugin it works like this output ([dice(numDice+"d6") + buffs + debuffs])

But for the random dice icon plugin I cannot do that. Also is it possible to lock only specific dice with locker plugin?

4
4 comments
  • @Liquefy7822 I think an alternative approach to do the [dice(numDice+"d6") + buffs + debuffs] for the random dice icon plugin is this:

    [dice(numDice+'d6').sum + buffs + debuffs]  
    

    The dice(...).sum behaves like the normal dice(...) in the original dice plugin.

    So, for example, if you want to multiply the dice values together, you can do this:

    [dice("3d12").sum \* dice("3d20").sum \* dice("2d50").sum]  
    

    (backslashes in \* must be removed)