
Team mates, I have been dabbling with a rather simple Eldritch Blast Macro, I got most of it to work, including the fx, however I noticed a small problem. I intended the macro to query if Hexblade's Curse was on each beam target to determine further rolls. However it only asks once, which becomes problematic if shooting multiple targets. Here is my code. Can anyone take a look and see where I went wrong? Is having it query for each ATK roll beyond the reach of the macro? I have queried the forums extensively and cannot find a similar issue or resolution so I conclude that I am definitely missing something. @{selected|wtype}&{template:default} {{name=@{selected|character_name} casts Eldritch Blast!}} {{ ***@{selected|character_name}'s first blast*** *[[@{selected|d20}cs>?{Target HB Cursed?|No,20|Yes,19} + @{selected|spell_attack_bonus}[Spell Attack Bonus]]]*, **does [[1d10 + @{selected|charisma_mod}[CHA] + [[abs(?{Target HB Cursed?}-20)*@{selected|pb}]][PROF]]] force damage!** ***@{selected|character_name}'s second blast*** *[[@{selected|d20}cs>?{Target HB Cursed?|No,20|Yes,19} + @{selected|spell_attack_bonus}[Spell Attack Bonus]]]*, **does [[1d10 + @{selected|charisma_mod}[CHA] + [[abs(?{Target HB Cursed?}-20)*@{selected|pb}]][PROF]]] force damage!** }} /fx beam-holy @{target|Caster|token_id} @{target|Foe1|token_id} /fx burst-holy @{target|Foe1|token_id} /fx beam-holy @{target|Caster|token_id} @{target|Foe2|token_id} /fx burst-holy @{target|Foe2|token_id} I appreciate any help and time spent on this.