I would like to modify a duality dice scriptcard David M. posted in this&nbsp; thread . I slightly modified it to list the PC rolling and what NPC's Difficulty they are targeting. What I want to do is add a line or lines that list a weapon and damage. So, it would be the same information that would be in this macro. &amp;{template:default} {{name=Pulsar}}{{Range=Far}}{{Damage=[[ [[@{selected|pc_proficiency}]]d10 + 3 ]] **Energy**}}{{Crit Damage=+[[@{selected|pc_proficiency}*10+3]] **Energy**}}{{Target Thresholds= **Major**[[@{target|npc_major_threshold}]] |**Severe**[[@{target|npc_severe_threshold}]] }} But, I want it as a couple of lines in the scriptcards output, so it is all automated for an attack. Maybe a line with the weapon and range, then one with the damage, and one with the thresholds for comparison. Added bonuses: 1. Compares to the thresholds and determine how many HP dealt.&nbsp; 2. Outputs crit damage if a crit success is rolled. Any assistance much appreciated. !script {{ &nbsp; --#Title|Agility Roll &nbsp; --#titleFontSize|20px &nbsp; --#titleCardBottomBorder|#ffffff &nbsp; --#oddRowBackground|#444444 &nbsp; --#evenRowBackground|#444444 &nbsp; --#bodyFontSize|20px &nbsp; --#evenRowFontColor|#ffffff &nbsp; --#oddRowFontColor|#ffffff &nbsp; --#titlecardBackgroundImage|linear-gradient(#999999, black) &nbsp; --+|[hr #ffffff] &nbsp; &nbsp; --+|[b]@{selected|token_name}[/b] vs [b]@{target|token_name}[/b]’s [i]Difficulty[/i] [roll]@{target|npc_difficulty}[/roll] &nbsp; --:ASSIGN URLs TO DICE ARRAYS| &nbsp; --&gt;ConfigureURLs| &nbsp; --&amp;rollType|All &nbsp; --=rerollNum|0 &nbsp; --:RerollReentry| Reentry passes either "Hope", "Fear", or "All" to denote what is rerolled &nbsp; --?[$rerollNum] -ne 0|[ &nbsp; &nbsp; &nbsp; --&amp;rollType|[&amp;reentryval] &nbsp; --]| &nbsp; --:ROLL DICE| &nbsp; --?"[&amp;rollType]" -eq "Hope" -or "[&amp;rollType]" -eq "All"|[ &nbsp; &nbsp; &nbsp; --=hopeDieRoll|1d12 &nbsp; &nbsp; &nbsp; --=hopeIndex|[$hopeDieRoll]-1 &nbsp; --]| &nbsp; --?"[&amp;rollType]" -eq "Fear" -or "[&amp;rollType]" -eq "All"|[ &nbsp; &nbsp; &nbsp; --=fearDieRoll|1d12 &nbsp; &nbsp; &nbsp; --=fearIndex|[$fearDieRoll]-1 &nbsp; --]| &nbsp; --?"[&amp;rollType]" -eq "Advantage" -or "[&amp;rollType]" -eq "All"|[ &nbsp; &nbsp; &nbsp; --=advDieRoll|1d6 &nbsp; &nbsp; &nbsp; --=advIndex|[$advDieRoll]-1 &nbsp; &nbsp; &nbsp; --&amp;advantageQuery|?{Roll with Adv/Disadv?|None|Advantage|Disadvantage} &nbsp; --]| &nbsp; --=modifier|@{selected|agility}+?{Modifier|0} &nbsp; --:CONFIGURE OUTPUT BASED ON ADV/DISADV| &nbsp; --&amp;rerollStr|[rbutton:#000000:#e2bf67:20px]Reroll::RerollReentry;Hope[/rbutton]&nbsp; &nbsp; &nbsp;[rbutton:#FFFFFF:#713030:20px]Reroll::RerollReentry;Fear[/rbutton] &nbsp; --&amp;diceStr|[img width=64 height=64][@hopeDiceArr([$hopeIndex.Raw])][/img] + [img width=64 height=64][@fearDiceArr([$fearIndex.Raw])][/img] &nbsp; --?"[&amp;advantageQuery]" -eq "None"|[ &nbsp; &nbsp; &nbsp; --=total|[$hopeDieRoll]+[$fearDieRoll] + [$modifier]&nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; --&amp;diceStr|+ + [$modifier.Raw]&nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; --&amp;advStr| &nbsp; --]|&nbsp;&nbsp; &nbsp; --?"[&amp;advantageQuery]" -eq "Advantage"|[ &nbsp; &nbsp; &nbsp; --=total|[$hopeDieRoll]+[$fearDieRoll] + [$advDieRoll] + [$modifier]&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; --&amp;diceStr|+ + [img width=55 height=55][@advDiceArr([$advIndex.Raw])][/img] + [$modifier.Raw] &nbsp; &nbsp; &nbsp; --&amp;rerollStr|+&nbsp; &nbsp; [rbutton:#FFFFFF:#3988bf:20px]Reroll::RerollReentry;Advantage[/rbutton] &nbsp; &nbsp; &nbsp; --&amp;advStr|(Advantage) &nbsp; --]|&nbsp;&nbsp; &nbsp; --?"[&amp;advantageQuery]" -eq "Disadvantage"|[ &nbsp; &nbsp; &nbsp; --=total|[$hopeDieRoll]+[$fearDieRoll] - [$advDieRoll] + [$modifier] &nbsp; &nbsp; &nbsp; --&amp;diceStr|+ − [img width=55 height=55][@advDiceArr([$advIndex.Raw])][/img] + [$modifier.Raw]&nbsp; &nbsp; &nbsp; &nbsp; --&amp;rerollStr|+&nbsp; &nbsp; [rbutton:#FFFFFF:#3988bf:20px]Reroll::RerollReentry;Advantage[/rbutton] &nbsp; &nbsp; &nbsp; --&amp;advStr|(Disadvantage) &nbsp; --]| &nbsp; --:PRINT RESULTS| &nbsp; --+|[&amp;diceStr] &nbsp; --+|[&amp;rerollStr] &nbsp; --#leftSub|[&amp;advStr] &nbsp; --?[$rerollNum] -gt 0|[ &nbsp; &nbsp; &nbsp; --#rightSub|reroll #[$rerollNum] &nbsp; --]| &nbsp; --+|[hr #ffffff] &nbsp; --+|[rbutton:#000000:#ffffff:16px]Reroll All::RerollReentry;All[/rbutton] &nbsp; --+|[hr #ffffff] &nbsp; --?[$hopeDieRoll] -gt [$fearDieRoll]|[ &nbsp; &nbsp; &nbsp; --+|Total: [$total] with [img width=64 height=30][&amp;hopeLabelURL][/img] &nbsp; --]| &nbsp; --?[$hopeDieRoll] -lt [$fearDieRoll]|[ &nbsp; &nbsp; &nbsp; --+Total:|[$total] with [img width=64 height=30][&amp;fearLabelURL][/img]&nbsp; &nbsp; --]| &nbsp; --?[$hopeDieRoll] -eq [$fearDieRoll]|[ &nbsp; &nbsp; &nbsp; --+|[c][#009900]Critical Success![/#][/c] &nbsp; --]| &nbsp; --=rerollNum|[$rerollNum] + 1 &nbsp; --X| End Macro &nbsp; --:FUNCTIONS| &nbsp; --:ConfigureURLs| &nbsp; &nbsp; &nbsp; --:Hope Dice| assigns URLs to array &nbsp; &nbsp; &nbsp; --~|array;define;hopeDiceArr;<a href="https://s3.amazonaws.com/files.d20.io/images/386684787/pLnNqty6KSOAiRB4oLszvw/max.png?1711770174;https://s3.amazonaws.com/files.d20.io/images/386684766/0oY4y0j71SStvELQWRw4zg/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684769/Ynj80moMR_UxPrGF-jFGQw/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684768/gYSq8iPvxGCtZv1vFV5puw/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684772/3S30DV2ppNkDhMW64UE8-w/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684777/1AgV_bchNfYX2hwajLu0Qw/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684770/c6YYtBUlwonaACsSwjbNJA/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684785/IFIci57lDHz9Nt0DJ_03ww/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684773/NW-euYoSrCuaPfoDEosy_w/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684780/BPUmHeovI3xVYJweh24RLg/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684767/bJZx3C7cp58hIHF7H8Sqbw/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684764/_Tr2qAm2WENnOVPeuOv0yw/max.png?1711770173" rel="nofollow">https://s3.amazonaws.com/files.d20.io/images/386684787/pLnNqty6KSOAiRB4oLszvw/max.png?1711770174;https://s3.amazonaws.com/files.d20.io/images/386684766/0oY4y0j71SStvELQWRw4zg/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684769/Ynj80moMR_UxPrGF-jFGQw/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684768/gYSq8iPvxGCtZv1vFV5puw/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684772/3S30DV2ppNkDhMW64UE8-w/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684777/1AgV_bchNfYX2hwajLu0Qw/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684770/c6YYtBUlwonaACsSwjbNJA/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684785/IFIci57lDHz9Nt0DJ_03ww/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684773/NW-euYoSrCuaPfoDEosy_w/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684780/BPUmHeovI3xVYJweh24RLg/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684767/bJZx3C7cp58hIHF7H8Sqbw/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684764/_Tr2qAm2WENnOVPeuOv0yw/max.png?1711770173</a> &nbsp; &nbsp; &nbsp; --:Fear Dice| assigns URLs to array &nbsp; &nbsp; &nbsp; --~|array;define;fearDiceArr;<a href="https://s3.amazonaws.com/files.d20.io/images/386684782/LOYKMtIHsNQvaL1h48xWCg/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684779/mb7pq_d4QXx5X7ENj_FiqA/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684786/7PeBPzF4WvUr4YboKs4EIw/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684778/3lg3zRIdZjbfiVMJsuM_fw/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684771/yeA-fd75wgQg82Wgocqb_g/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684776/h0wXfQDPP-2zLKmOOuOwSQ/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684781/HOE8OXqyjALj8fCrpDHD1w/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684783/ONl_cTRUZJnUN6Cj32COSg/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684765/-FH7nyFQQNeznkAgRMHYzw/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684775/lIk7T5QvZTQlO6tHCx-cTA/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684774/fvyaG_Ubbs2MA3oD47DJEQ/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684784/hc3VuGTPem3NGCRF1jYl6w/max.png?1711770173" rel="nofollow">https://s3.amazonaws.com/files.d20.io/images/386684782/LOYKMtIHsNQvaL1h48xWCg/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684779/mb7pq_d4QXx5X7ENj_FiqA/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684786/7PeBPzF4WvUr4YboKs4EIw/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684778/3lg3zRIdZjbfiVMJsuM_fw/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684771/yeA-fd75wgQg82Wgocqb_g/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684776/h0wXfQDPP-2zLKmOOuOwSQ/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684781/HOE8OXqyjALj8fCrpDHD1w/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684783/ONl_cTRUZJnUN6Cj32COSg/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684765/-FH7nyFQQNeznkAgRMHYzw/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684775/lIk7T5QvZTQlO6tHCx-cTA/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684774/fvyaG_Ubbs2MA3oD47DJEQ/max.png?1711770173;https://s3.amazonaws.com/files.d20.io/images/386684784/hc3VuGTPem3NGCRF1jYl6w/max.png?1711770173</a> &nbsp; &nbsp; &nbsp; --:Adv/DisAdv Dice| assigns URLs to array &nbsp; &nbsp; &nbsp; --~|array;define;advDiceArr;<a href="https://s3.amazonaws.com/files.d20.io/images/386767136/uKTWuK0C9C8yx6vc5lK69w/max.png?1711824117;https://s3.amazonaws.com/files.d20.io/images/386767147/LySQue9UmI7NRS_ji4XSBA/max.png?1711824119;https://s3.amazonaws.com/files.d20.io/images/386767156/TIItDLMrCgWi969ieNTG3A/max.png?1711824122;https://s3.amazonaws.com/files.d20.io/images/386767164/gHuyDu2bjTyJGEM60GvsSg/max.png?1711824127;https://s3.amazonaws.com/files.d20.io/images/386767171/PXKBpxxWBJ9PszLtNkRpmw/max.png?1711824131;https://s3.amazonaws.com/files.d20.io/images/386767217/Vd1Kz7B4sza5VuBcvic7JQ/max.png?1711824133" rel="nofollow">https://s3.amazonaws.com/files.d20.io/images/386767136/uKTWuK0C9C8yx6vc5lK69w/max.png?1711824117;https://s3.amazonaws.com/files.d20.io/images/386767147/LySQue9UmI7NRS_ji4XSBA/max.png?1711824119;https://s3.amazonaws.com/files.d20.io/images/386767156/TIItDLMrCgWi969ieNTG3A/max.png?1711824122;https://s3.amazonaws.com/files.d20.io/images/386767164/gHuyDu2bjTyJGEM60GvsSg/max.png?1711824127;https://s3.amazonaws.com/files.d20.io/images/386767171/PXKBpxxWBJ9PszLtNkRpmw/max.png?1711824131;https://s3.amazonaws.com/files.d20.io/images/386767217/Vd1Kz7B4sza5VuBcvic7JQ/max.png?1711824133</a> &nbsp; &nbsp; &nbsp; --:Hope/Fear labels| &nbsp; &nbsp; &nbsp; --&amp;hopeLabelURL|<a href="https://s3.amazonaws.com/files.d20.io/images/386775694/kdj_HkaacGCzFq0FZ5dgZw/max.png?1711827386" rel="nofollow">https://s3.amazonaws.com/files.d20.io/images/386775694/kdj_HkaacGCzFq0FZ5dgZw/max.png?1711827386</a> &nbsp; &nbsp; &nbsp; --&amp;fearLabelURL|<a href="https://s3.amazonaws.com/files.d20.io/images/386771482/nWlYQtdkBocgVKrtSJLxQA/max.png?1711825760" rel="nofollow">https://s3.amazonaws.com/files.d20.io/images/386771482/nWlYQtdkBocgVKrtSJLxQA/max.png?1711825760</a> &nbsp; --&lt;| }}