Hello, In my pathfinder home rule some weapons do max damage on their dice roll instead of multiplying. Does someone know how to write a macro so as to maximizing such dice roll in an easier way as what I developed: &{template:pf_attack}
{{character_name=@{character_name}}} {{character_id=@{character_id}}}
{{name=@{name}}} {{attack=[[ 1d20cs>@{crit-target} + [[ @{total-attack} ]]
]]}} {{damage=[[ @{damage-dice-num}d@{damage-die} + [[ @{total-damage} ]] ]]}}
{{crit_confirm=[[ 1d20 + [[ @{total-attack} ]] ]]}}
{{crit_damage=[[ @{damage-die} + @{total-damage} ]]}} {{type=@{type}}}
{{description=@{notes}}} @{iterative_attacks} @{macro_options} => I tell the macro not to roll critical but to take the type of die + additional damages (bold) Is there a "Max" function ? Thanks all.