Hi, I'm a total noob regarding macro/scripting or anything that looks like this: &{template:PFAttack} {{name=@{character_name}'s @{name}}} {{subtags=@{type}}} {{attack=[[1d20cs>@{crit-target}+@{total-attack}]]}} {{damage=[[@{damage-dice-num}d@{damage-die}+@{total-damage}]]}} {{confirm=[[1d20+@{total-attack}]]}} {{dmgcrit=[[(@{damage-dice-num} * (@{crit-multiplier} - 1))d@{damage-die} + (@{total-damage} * (@{crit-multiplier} - 1))]]}} {{notes=@{notes}}} My GM is using the Pathfinder legacy sheet, I entered my character info in the "Attack" sheet, if I click the above macro everything is working correctly but it doesn't give me an option to put any modifier when I roll for an attack. For example if I use a buff or there is an inspire courage, etc... I read on a guide that there is an option to add "+ ?{Modifier|0}" to have the option to add +hit and +damage when you click the macro. I tried it in a simple macro, for example "/me rolls a [[1d20+?{modifier|0}]]" and it is working. I tried to put "+ ?{Modifier|0}" in different position on the above macro but I really don't know what I'm doing and it is not working. TL;DR: How do I add "+ ?{Modifier|0}" to hit and damage to the following macro: &{template:PFAttack} {{name=@{character_name}'s @{name}}} {{subtags=@{type}}} {{attack=[[1d20cs>@{crit-target}+@{total-attack}]]}} {{damage=[[@{damage-dice-num}d@{damage-die}+@{total-damage}]]}} {{confirm=[[1d20+@{total-attack}]]}} {{dmgcrit=[[(@{damage-dice-num} * (@{crit-multiplier} - 1))d@{damage-die} + (@{total-damage} * (@{crit-multiplier} - 1))]]}} {{notes=@{notes}}} Thanks in advance.