
I'm trying to do something clever, and I'm clearly not as clever as I'd hoped. Is the following possible? I want to create mook tokens based off a template character. Then I want to create a macro that gets the name of the selected token, accesses the attributes of the character with that name, and does stuff with that. I think I'm running into an order-of-operations problem here. Any ideas how to get around it without invoking the API? For example, I've got a character called Dalek. The character has all the attributes it needs. I don't want to modify these attributes in any way. I can easily create mook Dalek tokens called Dalek. I tried creating a macro that looked like this: @{@{selected|token_name}|Awareness} This would, theoretically, send the Awareness attribute of the Dalek character to the chat if I had selected a Dalek mook. Unfortunately, the chat returns No character was found for '@{selected' , which suggests to me that the syntax is not being evaluated in the order I want. So, any tricks to access the attributes of the character for which the tokens are named?