Vince said: Until changes are made by roll20, you'll probably need to either create 2 versions of your attack,(one with smite, one without) or add a query for smite per attack using the sheet's "Attack insert macro" and "Damage insert macro" found in the Macro-text sub-section of your attack or globally(affects all attacks) from the "Macro-Options" section found on the Attacks tab/page. ie ?{Smite Dmg Bonus?|No,0 |Yes,[[ @{selected|class-0-level} ]]} ?{Smite Attk Bonus?|No,0 |Yes,[[ @{selected|cha-mod} ]]} I find it better to ask the same question, with the value for "Yes" being 1, and then multiply by the result. ie ?{Smite?|No,0|Yes,1}*@{selected|class-0-level} ?{Smite?|No,0|Yes,1}*@{selected|cha-mod} For bonus points, make sure that you're not adding a Cha penalty! ?{Smite?|No,0|Yes,1}*{@selected|cha-mod},0}kh1