PDA

View Full Version : DM Help 3.5e roll20 character sheet macro help!



Albions_Angel
2020-03-06, 04:41 PM
Hey all. I need help with some roll20 3.5e macros that are tied to the standard (Diana's) 3.5e character sheet. I am trying to edit the attack macros to be able to include flat, non-multiplied damage, such as sneak attack damage, or the secondary arrows from manyshot. Or even just to be able to detail extra damage as a different type.

I gave it a go, and while I can modify the macros to allow me to roll, say, offhand attacks with mainhand attacks for TWF, I cant get it to just roll secondary damage. I have asked on the roll20 forums and on reddit (in the roll20 subreddit) for help, but I thought a more 3.5e centric forum might help.

I will post my working macro for the TWF example, and my failed attempt at a sneak attack (with 3d6 damage) macro. Both macros will be split across multiple lines - note that they need to be on one line for them to work in the character sheet, I have just split them for readability. Also note, I cannot edit the sheets as I am a free, not pro, user of roll20.

Thanks guys:

TWF


&{template:DnD35Attack} {{pcflag=true}} {{name=@{character_name}}} {{subtags=attacks with a @{weapon1name} }}
{{attack1=A1: [[ @{weapon1attackcalc} ]] }} {{critconfirm1=Crit?: [[ @{weapon1attackcalc} ]] }} {{damage1=D1: [[ @{weapon1damage} ]] }} {{critdmg1=+ [[ @{weapon1crit} ]] }} {{fullattackflag= [[d1} ]] }}
{{attack2=A2: [[ @{weapon1attackcalc}-5 ]] }} {{critconfirm2=Crit!: [[ @{weapon1attackcalc}-5 ]] }} {{damage2=D2: [[ @{weapon1damage} ]] }} {{critdmg2=+ [[ @{weapon1crit} ]] }}
{{attack3=A3: [[ @{weapon1attackcalc}-10 ]] }} {{critconfirm3=Crit!: [[ @{weapon1attackcalc}-10 ]] }} {{damage3=D3: [[ @{weapon1damage} ]] }} {{critdmg3=+ [[ @{weapon1crit} ]] }}
{{attack4=A4: [[ @{weapon1attackcalc}-15 ]] }} {{critconfirm4=Crit!: [[ @{weapon1attackcalc}-15 ]] }} {{damage4=D4: [[ @{weapon1damage} ]] }} {{critdmg4=+ [[ @{weapon1crit} ]] }}
{{attack5=O1: [[ @{weapon1attackcalc}-2 ]] }} {{critconfirm5=Crit!: [[ @{weapon1attackcalc}-2 ]] }} {{damage5=DO1: [[ @{weapon1damage} ]] }} {{critdmg5=+ [[ @{weapon1crit} ]] }}
{{attack6=O2: [[ @{weapon1attackcalc}-5 ]] }} {{critconfirm6=Crit!: [[ @{weapon1attackcalc}-5 ]] }} {{damage6=DO2: [[ @{weapon1damage} ]] }} {{critdmg6=+ [[ @{weapon1crit} ]] }}
{{attack7=O3: [[ @{weapon1attackcalc}-10 ]] }} {{critconfirm7=Crit!: [[ @{weapon1attackcalc}-10 ]] }} {{damage7=DO3: [[ @{weapon1damage} ]] }} {{critdmg7=+ [[ @{weapon1crit} ]] }}

Failed 3d6 sneak attack roll


&{template:DnD35Attack} {{pcflag=true}} {{name=@{character_name}}} {{subtags=attacks with a @{weapon1name} }}
{{attack1=A1: [[ @{weapon1attackcalc} ]] }} {{critconfirm1=Crit?: [[ @{weapon1attackcalc} ]] }} {{damage1=D1: [[ @{weapon1damage} ]] }} {{critdmg1=+ [[ @{weapon1crit} ]] }} {{fullattackflag= [[d1} ]] }}
{{damage2=SA: [[ 3d6 ]] }}