I'm running a Warhammer 40k, 9 Edition table and have been trying to make some macros to speed these rolls along. in short, to do damage you must... Roll a D6 for each shot and try to beat a certain score. Roll a D6 for each shot that hit and try to beat a certain score to see if it wounds Roll a D6 for each shot that wounded to try and beat a certain score to see if you take damage. My question is, why doesn't this work: /roll {{{{{?{Shots}d6?{Plus or Minus to Hit?|+0}}>@{selected|Ballistic Skill}d6}>?{Wound Value|Less than Half,6|Less Than,5|Equal to,4|More than,3|More than Double,2}}d6?{Armor Penetration?|+0}}>@{target|Save} I'm trying to roll up Xd6 effected by relevant modifiers, then the count of the rolls that succeeded becomes the next Xd6 roll. that count then becomes the last Xd6 roll.(Ex. 10d6 => 5d6 => 2d6) Ive tried it with reusing rolls, /em shoots [[{10d6}>4]] shots, and {$[[0]]d6}>4 of them wound, but i get" Shoots <span class="inlinerollresult showtip tipsy-n-right fullcrit" original-title=" Rolling {10d6}>4 = {( 6 + 2 + 5 + 3 + 4 + 4 + 3 + 4 + 4 + 3 )}" style="background-color: var(--dark-primary); box-sizing: content-box; border: 2px solid rgb(63, 179, 21); padding: 0px 3px; font-weight: bold; cursor: help; font-size: 1.1em; color: rgb(179, 179, 179);">6 shots, and [[( <span class="inlinerollresult showtip tipsy-n-right fullcrit" original-title=" Rolling {10d6}>4 = {( 6 + 2 + 5 + 3 + 4 + 4 + 3 + 4 + 4 + 3 )}" style="background-color: var(--dark-primary); box-sizing: content-box; border: 2px solid rgb(63, 179, 21); padding: 0px 3px; font-weight: bold; cursor: help; font-size: 1.1em; color: rgb(179, 179, 179);">6 *1)d6]] of them wound " as the result. Ive tried calling the macros in order but if i call the wound macro, the hit macro doesn't ask for shots or modifiers and the roll doesn't even go through. Heres the working Macros To Hit: /roll {?{Shots}d6?{To hit bonus or penalty?|+0}}>@{selected|Ballistic Skill} To wound: {?{Hits?}d6?{Modifier|+0}}>?{Wound Value|Less than Half,6|Less Than,5|Equal to,4|More than,3|More than Double,2} To Save: {?{Wounds}d6?{Modifier|+0}}>@{target|Save}