
In my continuing effort to automate my mooks with macros, and if need be the API, I now turn to the rollable tables. In short, I'm running The One Ring, and mooks can be in a state of Weary, which affects their rolls, if they deplete their Hate resource. Because of the way mooks don't have a character sheet, the Hate value has to be one of the three values a Token can have. I now need to write a macro which if the Hate is equal to 0, rather than rolling like this: /r 1t[feat] + 3t[normal] > ?{Target Number|14} I need it to roll like this: /r 1t[feat] + 3t[weary] > ?{Target Number|14} If I had more places to store data about the mook, this wouldn't be a problem as I already have an API script that'll set the Weary state on characters, and there I can instead do this: /r 1t[feat] + 3t[@{selected|Weary}] > ?{Target Number|14} However on charactersheet-less tokens, that's not possible. So I was hoping perhaps I could simply point to a table, with the Hate value as the lookup value. However I'm not seeing anything like that, which makes me think it isn't possible.