I've seen some useful macros that show me how to roll 2d6 and if the total is equal to or greater than 8, its a success, but not less than, {2d6,0d0}>8 will tell you if the result of both 2d6 is equal to or greater than 8, however: {2d6,0d0}<8 will tell you if each dice rolled is less than 8 and not the total of both dice The full Macro will look something like: &{template:atkdmg} {{rname=Leadership Check}} {{damage=1}} {{dmg1flag=1}} {{dmg1=[[{2d6,0d0}<?{Leadership}]]}} {{dmg1type=Pass}} My only work around is this &{template:atkdmg} {{rname=Leadership Check}} {{damage=1}} {{dmg1flag=1}} {{dmg1=[[{2d6,0d0}>[[?{Leadership}+1]]]]}} {{dmg1type=Failed}} By using > and adding +1 it will show me when the roll fails instead of passes Can anyone suggest what I might be doing wrong.