I'm trying to get a dropdown to roll for a character's attribute, then an input for additional modifiers but I'm very new to this and it's partially cobbled together from other bits of code. The working code: &{template:default} {{name=Attribute Roll}} {{?{Attribute?| Body,=Body: [[2d6 + @{selected|Body}| Heart,=Heart: [[2d6+@{selected|Heart}| Mind,= Mind: [[2d6+@{selected|Mind}| Soul,=Soul: [[2d6+@{selected|Soul}| Magic,=Magic: [[2d6+{@{selected|Magic}}}]]}} What I'm attempting but doesn't work: &{template:default} {{name=Attribute Roll}} {{?{Attribute?| Body,=Body: [[2d6 + @{selected|Body} + ?{Forward|0} + ?{Relationship|0} + ?{Extra|0}| Heart,=Heart: [[2d6 + @{selected|Heart} + ?{Forward|0} + ?{Relationship|0} + ?{Extra|0}| Mind,= Mind: [[2d6 + @{selected|Mind} + ?{Forward|0} + ?{Relationship|0} + ?{Extra|0}| Soul,=Soul: [[2d6 + @{selected|Soul} + ?{Forward|0} + ?{Relationship|0} + ?{Extra|0}| Magic,=Magic: [[2d6 + {@{selected|Magic} + ?{Forward|0} + ?{Relationship|0} + ?{Extra|0}}}]]}} or even just having one box for all the bonuses together. Bonus points if there's a way to print the breakdown so the output would be something like "[Attribute]: [Roll] + [Forward} + [Relationship] + [Extra] = [Total]" (it's okay if not or it's a pain to do).