I am trying to create a macro that will allow my PF2e Investigator to grant the +1 bonus to all characters within his active Empyreal Blessing aura but am stuck.  I have an array of all the token-ids on the page and I have successfully calculated the distance from the source and compare it to my current aura radius.  I have been able to cycle through all tokens and assign them a status marker to provide a visual reminder that it is on using token-mod.     I'm now trying to modify the _query_roll_bonus by setting it to 1 for all toons within my current aura.  Unfortunately, I believe I have token-ids in my array and I cannot seem to reference the attribute for each character.  I'm getting this error:      This is the code as it exists now:  !scriptcards {{    --#sourceToken|@{selected|token_id}    --@token-mod|_ids [*s:t-id] _set aura1_radius|+5    --#emoteText|[*S:character_name] summons the powers of his ancestors to aid in battle    --+|[b][c]Blessings from beyond help your companions strike true. You and your allies gain a +1 status bonus to attack rolls while within the emanation.[/c][/b]      --+|Increment Aura 1 radius and get current radius   --=RadiusAura1|[*S:t-aura1_radius]+5   --+|Aura 1 Radius = [$RadiusAura1] ft      --+|Collect array of all players   --~dummy|array;pagetokens;PC_array;@{selected|token_id}   --~count|array;getcount;PC_array   --+Total:|There are [&count] graphical objects on the page   --+|Loop through each PC   --%loopCounter|0;[&count]     --+Value|[[@PC_array([&loopCounter])]:character_name]     --+|Calculate the distance of [@PC_array([&loopCounter])] from source token     --~Aura1Range|distance;@{selected|token_id};[@PC_array([&loopCounter])]     --=FeetApart|[$Aura1Range] * 5     --+|The distance = [$FeetApart]        --?[$FeetApart] -le [$RadiusAura1] |[        --@setattr| _silent _charid [@PC_array([&loopCounter])] _query_roll_bonus|1        --@token-mod|_ids [@PC_array([&loopCounter])] _set statusmarkers|!trophy     --]|     --+|If Distance > Radius Aura turn off Hit bonus and turn off trophy flag   --%|   --+Loop|Is Done!  }}  Can someone point me in a direction?  I tried using --charid in ChatSetAttr but I don't think it does what I thought....