Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Chronica Feudalis - Dice Pool

1667131705

Edited 1667131838
Kadus
Pro
Sheet Author
Hi, I'm currently creating a character sheet for the French version of Chronica Feudalis (Medium Aevum) and I thought of creating a dice pool inspired by the one in the Cortex Heroic character sheet like this screenshot (Work in progress).   For now, I'm just using this macro, but is it possible to have the dice displayed in a rolltemplate like the Genesys dice pool?  How could I do that? Another possibility would be to compare the score of each dice to a Target Number, I thought it could work with this macro, but the macro compares sums and not each dice. Is there a macro to do this or an API script?   /r {2d6,2d4,1d8}>5 Thanks in advance (translated by DeepL)
1667139833
Gauss
Forum Champion
So for the graphical version my suggestion is:  1) Create a rollable table 2) Turn the table into a token 3) Right click on the token, hover over advanced, set "Is Image" 4) Copy to as many dice as you want 5) grab a bunch of the dice on the table, right click, hit random.  For numeric rolls vs a target number here is a macro code for you. &{template:default} {{name=Dice Pool}} {{Target Number=[[?{target number?}]]}} {{Total Successes=[[[[[[?{number of d4s?|0}]]d4>?{target number?}]]+[[[[?{number of d6s?|0}]]d6>?{target number?}]]+[[[[?{number of d8s?|0}]]d8>?{target number?}]]+[[[[?{number of d10s?|0}]]d10>?{target number?}]]+[[[[?{number of d12s?|0}]]d12>?{target number?}]]+[[[[?{number of d20s?|0}]]d20>?{target number?}]]]]}} {{d4s Rolled=$[[1]]}} {{d6s Rolled=$[[2]]}} {{d8s Rolled=$[[5]]}} {{d10s Rolled=$[[6]]}} {{d12s Rolled=$[[9]]}} {{d20s Rolled=$[[10]]}} What it looks like: 
1667141452
Kadus
Pro
Sheet Author
Thank you very much Gauss as this is exactly the macro I needed!  But strangely only the d12 and d20 are launched in 3d but that's ok.
1667142226

Edited 1667142409
Gauss
Forum Champion
No idea why that is, when I drop the d12s and d20s out of the macro it only rolls d8s and d10s.  Perhaps it is an issue with the Roll20 back end on the default template. 
1667303874

Edited 1667304492
Kadus
Pro
Sheet Author
I found a little trick that consists in secretly rolling as many dice as the dicepool in order to give the illusion that all the dice in the dicepool have been rolled in 3D and it works well. Thanks again for the help
By de-nesting some of the rolls the 3D dice can be wrangled to work together. This version of Gauss' macro does that &{template:default} {{name=Dice Pool}} {{Target Number=[[?{target number?}]]}} {{Total Successes=[[ [[?{number of d4s?|0}]]d4>?{target number?} +[[?{number of d6s?|0}]]d6>?{target number?} +[[?{number of d8s?|0}]]d8>?{target number?} +[[?{number of d10s?|0}]]d10>?{target number?} +[[?{number of d12s?|0}]]d12>?{target number?} +[[?{number of d20s?|0}]]d20>?{target number?}]]}} {{d4s Rolled=$[[0]]}} {{d6s Rolled=$[[1]]}} {{d8s Rolled=$[[2]]}} {{d10s Rolled=$[[3]]}} {{d12s Rolled=$[[4]]}} {{d20s Rolled=$[[5]]}} It should also run a little faster since the rolls aren't getting split up.
1667327994
Gauss
Forum Champion
Thanks RainbowEncoder
1667331156
Kadus
Pro
Sheet Author
Thanks RainbowEncoder it works great !