Hi! I'm working on my first character sheet. In the given RPG there are three possible rolls that a player can choose from. Currently I'm trying to match these rolls with the roll20 roll-logic, but I'm not sure if it is possible in general to do what I want to do. I want to build a template roll where the player can choose one of the three different types of rolls: Standard roll: /roll 2d10cs>9cf<2 + ?{modifier|0} Safety roll: /roll 2d10d1 + ?{modifier|0} Risk roll: /roll 4d10k2cs>9cf<2 + ?{modifier|0 After reading the wiki and some posts in this forum I've come up with something like this: {{skill=?{rolltype|
[[2d10+@{acrobatics}+?{modifier|0}+@{acrobaticsbonus}-@{handicap}]]|
[[2d10d1+@{acrobatics}+?{modifier|0}+@{acrobaticsbonus}-@{handicap}]]|
[[4d10k2cs>9cf<2+@{acrobatics}+?{modifier|0}+@{acrobaticsbonus}-@{handicap}]]}}}
But this code doesn't work properly. The box from which the player chooses the roll doesn't have all three options. Am I missing something here? Cheers, Loki