I'm sure ScriptCards has a way to do that, which I'll have to leave to Joshua to provide as I'm not that well versed in ScriptCards syntax. However, you can always get the value from a status marker on a token using Fetch. There are a few options... also, everywhere you see "selected" below, you can use another way to identify the token (name, id, etc.). Everywhere you see "blue" you could use the name of a different marker: @(selected.status.blue) => returns the value of first blue marker on token @(selected.status.blue?all) => returns the values of the bluem arkers on token, in order, as a single number @(selected.status.blue?all+) => returns the total of the values on all blue markers on token @(selected.status.blue.count) => returns the number of blue markers on token As an example, given this image: The formations would return: @(selected.status.blue) => 2 @(selected.status.blue?all) => 27 @(selected.status.blue?all+) => 9 @(selected.status.blue.count) => 2 I'm not sure if ScriptCards lets you apply the same status marker multiple times, but TokenMod does. That's how I was able to produce a token with the status as depicted in that image. It's a good way to extend the status count beyond 9 (effectively giving it a tens digit).