
Hi all I thought I would share this on the off chance it might be useful. I was looking for a method to do Degrees of Success (DoS) on rolls for WH40K Dark Heresy (DH), and from my understanding this is not directly supported. But will a little maths we can sort of approximate it. Here are two possible solutions: For all examples BS is 35, and in DH success is achieved by rolling under that, and a DoS is achieved for each 10 points the roll beats the skill. e.g. a roll of 30 would be a success with no DoS and 25 would be success with one DoS. /roll [[floor((@{selected|BS} + ?{Modifier|0} - d100)/10)]]d1>0 Examples: 36+ = macro error 35 => 0 success 25 => 1 success 15 => 2 success /roll floor((@{selected|BS} + ?{Modifier|0} - d100)/10) Examples: 36+ = <a negative number> 35 => 0 25 => 1 15 => 2 Hope some finds these helpful. You can test them by adding a literal value in place of both the selected attribute and d100 roll. Cheers