Lord Low said: I'm looking for a turn countdown macro and really struggling. I am not technical whatsoever. Ideas? First, make a rollable token with all of the numbers you want to show, or each of the graphics you want to show. Then there are several macros you'll want to make. For example, a simple rollable token that displays "10", "9", "8"..."2", "1", "BOOM!". Oh, and I name things in a way that helps me know what they are all about. Display-Token-ID &{template:default} {{name=**Token Name & ID**}} {{**Token ID**= @{selected|token_id} }} That displays for you a token's specific id number on one specific page. This is really useful when you want to apply the same change to a number of tokens that are scattered across a number of pages. My example count down is from a space game, and I wanted to keep track of how much air the players had left. Before I would count down, I wanted to set the remaining air to a known number. Yep, another macro! And this one uses the Token ID found previously: Air-Reset !token-mod --set currentside|0 --ids -Ma9JLHYHcevwNsTRkdS -Ma0Swb0rBHPPpShK19g -MaBW4BsnjXcMNkVXGRs -Ma0VQ0gm9E5erR9CB49 -Ma0VdXeA9-we735AYVc Note that the default behavior with or without an -ids option is to apply to any selected tokens. Now that we're at a known state across all of the pages, we need a way to count down. Note that we're only counting down in that the image showed to the players is going from "10" to "BOOM!" We are actually stepping forward from the zero index. Yep, another macro! Air-Used !token-mod --set currentside|?+ --ids -Ma9JLHYHcevwNsTRkdS -Ma0Swb0rBHPPpShK19g -MaBW4BsnjXcMNkVXGRs -Ma0VQ0gm9E5erR9CB49 -Ma0VdXeA9-we735AYVc And that's it, a nifty count down timer that is kept consistent across all pages. Oh, and for fun, here are two more macros that function slightly differently. Their explanation is left as an exercise for the reader. Day-Reset !token-mod --set currentside|?{Which Day?|2} --ids -Ma9JLHYHcevwNsTRkdS -Ma0Swb0rBHPPpShK19g -MaBW4BsnjXcMNkVXGRs -Ma0VQ0gm9E5erR9CB49 -Ma0VdXeA9-we735AYVc Day-Next !token-mod --set currentside|+ --ids -Ma9JLHYHcevwNsTRkdS -Ma0Swb0rBHPPpShK19g -MaBW4BsnjXcMNkVXGRs -Ma0VQ0gm9E5erR9CB49 -Ma0VdXeA9-we735AYVc