
Hello! I'm trying to figure out how to make my own macros for attacking with the Pathfinder PC template ( &{template:pc} ), because I find the 1e character sheet only allows you to make 7 attacks easily (4 from BAB, and 3 under Additional Attacks). I'm in a high level campaign, and this isn't sufficient. A full-round attack using the Pathfinder Character Sheet My question is, when writing my own macro, is there a way for me to add named attacks (like with the Off-Hand attacks in the above screenshot)? I've found I can create attacks numbered 1-7 with the rollN field,and that additional attacks (roll7 etc) show up with a blank name but still roll roll normally (as seen in the below screenshot). I can work with that, but it would be nice if I could name additional attacks. My custom-written macro Here's the macro that produces the second screenshot: &{template:pc} {{name=Mr. Skadoodles Smash}} {{attack=1}} {{charname=Mr. Skadoodles}} {{showchar=[[1]]} {{type=attack}} {{roll=[[1d20]]}} {{rolldmg1= [[1d6]] }} {{roll1=[[1d20]]}} {{roll1dmg1=[[1d8]]}} {{roll2=[[1d20]]}} {{roll2dmg1=[[1d8]]}} {{roll3=[[1d20]]}} {{roll3dmg1=[[1d8]]}} {{roll4=[[1d20]]}} {{roll4dmg1=[[1d8]]}} {{roll5=[[1d20]]}} {{roll5dmg1=[[1d8]]}} {{roll6=[[1d20]]}} {{roll6dmg1=[[1d8]]}} {{roll7=[[1d20]]}} {{roll7dmg1=[[1d8]]}} {{roll8=[[1d20]]}} {{roll8dmg1=[[1d8]]}} To restate my question, is it possible to reproduce the named attacks that the template generated by the character sheet uses? Can I label an attack as Off-Hand 1 in my macro, using the pc template? Alternatively, is there a way to make the name for roll7 and roll8 show up?