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?
Hello, sorry for late reply!
If you want to access individual dice output from the plugin, you can do so with:
[x = rIcon('2d6'), x.icons] [x.rolls[0].value] [x.rolls[1].value]
Where
0
is the first element in therolls
array returned by the plugin, and accessing its value with.value
.If you just want to add the same buffs to all of the individual dice, you can probably just do something like this:
[x = rIcon(numDice+'d6', 'solid'), x.icons] [x.sum + (numDice * buffs) + (numDice * debuffs)]
Where
numDice
is the number of dice. We then get the sum of all values in the rolls and then add the appropriate increase and decrease to the value by multiplying the increase and decrease based on the number of dice rolled and adding them to the sum of the rolls.Thanks for the Reply! I eventually found it easier to make it outside of Perchance Here is the link to the new site.