Hi all, I'm trying to create an ability macro for a d10 dicepool (WoD Wraith the Oblivion) that selects one attribute (WoD Attributes) from a dropdown menu and then a second attribute (WoD Abilities) from a dropdown menu, adding them together to get a total number of d10 to roll against a chosen Difficulty, failing all 1's. In the macro created below, for some reason it only rolls a number of d10 equal to the second selected attribute . The first selected attribute is simply added to the total number of successes. For example , first selecting an attribute with a total of 2 and then an attribute with a total of 4 against a Difficulty of 6 might create this roll result: 2+(4+6+7+2) = 4 Successes, because it gets 2 Successes from just selecting the first attribute and 2 from rolling the 6 and the 7 against the difficulty of 6. How can I adjust the macro below so it adds the two selected attributes together and rolling that total amount of d10? &{template:default} {{name=ACTION TEST}} {{number of successes=[[?{Attribute|Strength, @{Strength}|Dexterity, @{Dexterity}|Stamina, @{Stamina}|Charisma, @{Charisma}| Manipulation, @{Manipulation}|Appearance, @{Appearance}|Perception, @{Perception}|Intelligence, @{Intelligence}|Wits, @{Wits}}+?{Ability|None, @{None}|Alertness, @{Alertness}|Athletics, @{Athletics}|Awareness, @{Awareness}|Brawl, @{Brawl}|Empathy, @{Empathy}|Expression, @{Expression}|Intimidation, @{Intimidation}|Leadership, @{Leadership}|Streetwise, @{Streetwise}|Subterfuge, @{Subterfuge}|Craft, @{Craft}|Drive, @{Drive}|Etiquette, @{Etiquette}|Firearms, @{Firearms}|Larceny, @{Larceny}|Meditation, @{Meditation}|Melee, @{Melee}|Performance, @{Performance}|Stealth, @{Stealth}|Survival, @{Survival}|Academics, @{Academics}|Bureaucracy, @{Bureaucracy}|Computer, @{Computer}|Enigmas, @{Enigmas}|Investigation, @{Investigation}|Medicine, @{Medicine}|Occult, @{Occult}|Politics, @{Politics}|Science, @{Science}|Technology, @{Technology}}d10>?{difficulty}f1!]]}} Thank you!