********The point is to do this without API.******* Problem There is no good system for calculating multiple dice that each have there own modifier. EX: -Roll 3d10 that each have a positive and a negative modifier. You cannot just go 3d10+(3*4)-(3*8). Since each dice needs to calculated seperatly. Solution Create a new macro command that creates a number of calculations and states each calculation total seperatly. EX:&{{Number of Calculations|0}{Calculation}} =&{{Number of Hits|3}{1d10+?{Positive modifier|4}-?{Negative modifier|8}} =(1d10 + 4 - 8), (1d10 + 4 - 8), (1d10 + 4 - 8) = 2 +4-8, 6 +4-8, 10 +4-8 =-2, 4, 6 This would allow for many systems such as any 40k rpg, to calculate damage much faster, there are also many other uses for this.