Good morning and well met, Roll20 Team (and volunteers who aid in the effort), (Sorry for the wall of text, but I wanted to give your team the gory details so you everything you need to solve the problems I've found.) First of all, I'd like to thank the Roll20 Team. You do yeoman's work for the roleplaying community, and it is a great help to me and my players. I DM a game called Bloodstone Lands Divided and I think I've found two bugs in the D&D 3.5 character sheet. I have a work around for the first one. The second one I need your assistance with. For the initiative macro field, it appears twice on the Attributes and Abilities sheet, making any changes to that macro on the Character Sheet revert to its previous value whenever I change it there. My work around is to delete the duplicate attribute on the Attributes page, and then the macro box on the Character sheet works properly. It is annoying though. Further, two macro buttons for Initiative appear as token actions for all tokens (one capitalized, my macro, and the second lowercase, a weird duplicate macro). It might do us all well if this minor bug is fixed. A second bug I found is with the Attack Roll Template. It looks like the none of attributes for Attack #8, Attack #9, and Attack #10 (attack8, critconfirm8, damage8, critdmg8, etc.) will accept input from Roll Queries. When these attributes encounter a Roll Query in the macro script, the calculation stops and it produces the value of everything before the Roll Query. When my PC's ran into a carrion crawler (which has 9 attacks) I wrote the scripts for, I noticed the problem. To illustrate my point, here are the macro scripts I wrote for a carrion crawler: weapon1fullattackmacro : &{template:DnD35Attack} {{npcflag=true}} {{fullattackflag=[[1d1]]}} {{name=@{character_name} }} {{subtags=attacks **@{target|Target|token_name}**}} {{attack1=@{character_name}’s first @{weapon1name} attack hits AC [[@{weapon1attackcalc}]]}} {{critconfirm1=**+10**, and deals critical damage against AC [[@{weapon1attackcalc}]] or less}} {{fumbleroll=**-10**, and [[1t[Fumble-roll]]] against AC more than [[@{weapon1attackcalc}]] (**-5.05** for @{weapon2name} attacks)}} {{damage1= for [[@{weapon1damage}]] damage, plus @{weapon1specialproperties}}} {{critdmg1=+[[@{weapon1crit}]] critical damage}} {{attack2=@{character_name}’s second @{weapon1name} attack hits AC [[@{weapon1attackcalc}]]}} {{critconfirm2=**+10**, and deals critical damage against AC [[@{weapon1attackcalc}]] or less}} {{damage2= for [[@{weapon1damage}]] damage, plus @{weapon1specialproperties}}} {{critdmg2=+[[@{weapon1crit}]] critical damage}} {{attack3=@{character_name}’s third @{weapon1name} attack hits AC [[@{weapon1attackcalc}]]}} {{critconfirm3=**+10**, and deals critical damage against AC [[@{weapon1attackcalc}]] or less}} {{damage3= for [[@{weapon1damage}]] damage, plus @{weapon1specialproperties}}} {{critdmg3=+[[@{weapon1crit}]] critical damage}}{{attack4=@{character_name}’s fourth @{weapon1name} attack hits AC [[@{weapon1attackcalc}]]}} {{critconfirm4=**+10**, and deals critical damage against AC [[@{weapon1attackcalc}]] or less}} {{damage4= for [[@{weapon1damage}]] damage, plus @{weapon1specialproperties}}} {{critdmg4=+[[@{weapon1crit}]] critical damage}}{{attack5=@{character_name}’s fifth @{weapon1name} attack hits AC [[@{weapon1attackcalc}]]}} {{critconfirm5=**+10**, and deals critical damage against AC [[@{weapon1attackcalc}]] or less}} {{damage5= for [[@{weapon1damage}]] damage, plus @{weapon1specialproperties}}} {{critdmg5=+[[@{weapon1crit}]] critical damage}}{{attack6=@{character_name}’s sixth @{weapon1name} attack hits AC [[@{weapon1attackcalc}]]}} {{critconfirm6=**+10**, and deals critical damage against AC [[@{weapon1attackcalc}]] or less}} {{damage6= for [[@{weapon1damage}]] damage, plus @{weapon1specialproperties}}} {{critdmg6=+[[@{weapon1crit}]] critical damage}}{{attack7=@{character_name}’s seventh @{weapon1name} attack hits AC [[@{weapon1attackcalc}]]}} {{critconfirm7=**+10**, and deals critical damage against AC [[@{weapon1attackcalc}]] or less}} {{damage7= for [[@{weapon1damage}]] damage, plus @{weapon1specialproperties}}} {{critdmg7=+[[@{weapon1crit}]] critical damage}}{{attack8=@{character_name}’s eighth @{weapon1name} attack hits AC [[@{weapon1attackcalc}]]}} {{critconfirm8=**+10**, and deals critical damage against AC [[@{weapon1attackcalc}]] or less}} {{damage8= for [[@{weapon1damage}]] damage, plus @{weapon1specialproperties}}} {{critdmg8=+[[@{weapon1crit}]] critical damage}} {{attack9=@{character_name}’s @{weapon2name} attack hits AC [[@{weapon2attackcalc}-5.05 [Secondary Attack]]]}} {{critconfirm9=**+10**, and deals critical damage against AC [[@{weapon2attackcalc}-5.05 [Secondary Attack]]] or less}} {{damage9= for [[@{weapon2damage}-ceil(0.5*@{weapon2damagestat}) [Secondary Attack]]] damage}} {{critdmg9=+[[@{weapon2crit}-(@{weapon2critmult}-1)*ceil(0.5*@{weapon2damagestat}) [Secondary Attack]]] critical damage}} weapon1attackcalc : 1d20cs>@{weapon1critmin} +@{bab}[BAB] +@{epicattackbonus}[Epic AB] +[[@{weapon1stat}]][Ability] +@{size}[size] +@{weapon1enh}[Weapon Enh] +@{weapon1focus}[Weapon Focus] +2*?{Charging? (1=yes)|0} [Charge]+ 2*?{Flanking? (1=yes)|0} [Flank] + 0 [Special Bonuses] + ?{Attack Circumstance Mod?|0} [Circumstance] + ((@{bab} +@{epicattackbonus} +[[@{weapon1stat}]] +@{size} +@{weapon1enh} +@{weapon1focus} +2*?{Charging? (1=yes)|0} + 2*?{Flanking? (1=yes)|0} + 0 [Special Bonuses] + ?{Attack Circumstance Mod?|0})/100) weapon1damage : 0+@{weapon1damagestat}[Weapon Dmg Ability] +@{weapon1enh}[Weapon Enh] +@{weapon1specialize}[Weapon Specialization] + 0 [Special Bonuses] +?{Damage Circumstance Bonus?|0}[Circumstance] weapon1crit : [[(@{weapon1critmult}-1)*0)]] +(@{weapon1critmult}-1)*(@{weapon1damagestat}[Weapon Dmg Ability] + @{weapon1enh}[Weapon Enh] +@{weapon1specialize}[Weapon Spec] + 0 [Special Bonuses] +?{Damage Circumstance Bonus?|0}[Circumstance]) weapon1specialproperties : Poison on hit The values for weapon2attackcalc, weapon2damage, and weapon2crit are exactly the same except the damage macro uses a 1d4. If you test these, you will see what I mean. Can you assist me with these issues? Your help is greatly appreciated.