so I have a character using the new PF character sheet for which a weapons roll macro is: &{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}}} {{attk-notes=@{attack-notes}}} Great, I need to tweak it,m but I think I can handle that. .. I'm trying to find a way to call it from a regular macro. Obviously this won't quite work as outside the character sheet the weapon variables don't exist as those names.. I thought the solution was: &{template:PFAttack} {{name=@{character_name}'s @{repeating_weapon_0_name}}} {{subtags=@{repeating_weapon_0_type}}} {{attack=[[1d20cs>@{repeating_weapon_0_crit-target}+@{repeating_weapon_0_total-attack}]]}} {{damage=[[@{repeating_weapon_0_damage-dice-num}d@{repeating_weapon_0_damage-die}+@{repeating_weapon_0_total-damage}]]}} {{confirm=[[1d20+@{repeating_weapon_0_total-attack}]]}} {{dmgcrit=[[(@{repeating_weapon_0_damage-dice-num} * (@{repeating_weapon_0_crit-multiplier} - 1))d@{repeating_weapon_0_damage-die} + (@{repeating_weapon_0_total-damage} * (@{repeating_weapon_0_crit-multiplier} - 1))]]}} {{notes=@{repeating_weapon_0_notes}}} {{attk-notes=@{attack-notes}}} But that still simply returns the error: TypeError: Cannot read property 'substring' of undefined What am I missing? do I need a {selected|Character_Name} or something?