Hi all, I want to select a token, which tracker
numerical value is the name of an other entry in the turn order. For
example, the token that is actually selected is called "guard". Its
tracker value is 1. In the turn order, I also have an item called "1",
that I want to execute the piece of code in. The idea is that I need to roll a rollable table to obtain a number
from the selected token and store it in its tracker. This number is the
key to identify which attribute to search for another target token. So,
I select the "guard" token, roll my rollable table and obtain "1", that
I place in guard's tracker. Then I want to use an ability on my macro
mule ("M") called %{M|TEST}. This ability will ask to click on the
target token (call it "dragon") and return the attribute of
Dragon related to "1", which is Constitution (@{dragon|Constitution}). Here are my macro mule ability and myTurn Order : %{M|TEST} =@{M|pref_tracker}@{tracker|selected_token}} ( where @{M|pref_tracker}=@{tracker| ) Turn order guard 1 1 @{target|YOUR_TARGET|Constitution} 2 @{target|YOUR_TARGET|Dexterity} 3 @{target|YOUR_TARGET|Speed} selected_token @{M|pref_tracker}@{selected|token_name}} Here is my problem : Is there a way to nest multiple attributes in %{M|TEST} in order to make this code working ? @{M|pref_tracker}@{tracker|selected_token}} Hope I was clear enough, Many thanks