Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

How do I clear a token-mod added status marker using token-mod?

I use this to add a status marker on a token but I didn't see how to clear it using token-mod. Does anyone remember how to do this? !token-mod --set statusmarkers|chained-heart Thank you!
1696183223

Edited 1696183260
Here are my example macros with a "Staggered" marker. Staggered+ !token-mod {{   --set     statusmarkers|Staggered;+1 }} Staggered- !token-mod {{   --set     statusmarkers|Staggered;-1 }} Staggered0 !token-mod {{   --set     statusmarkers|-Staggered }}
TokenMod also has a ‘toggle’ feature:  !token-mod --set statusmarkers|!chained-heart
Is there a token-mod command to get rid of all statusmarkers?
<a href="https://app.roll20.net/forum/post/4225825/script-update-tokenmod-an-interface-to-adjusting-properties-of-a-token-from-a-macro-or-the-chat-area/?pageforid=11548046#post-11548046" rel="nofollow">https://app.roll20.net/forum/post/4225825/script-update-tokenmod-an-interface-to-adjusting-properties-of-a-token-from-a-macro-or-the-chat-area/?pageforid=11548046#post-11548046</a> Additionally, I've improved the method for clearing all Status Markers.&nbsp; Originally, you'd clear them by setting a specific one, then removing it, as: !token-mod --set statusmarkers|=blue|-blue That was always a bit of a hack based on how the status markers were parsed.&nbsp; I've now set it so you can set them to nothing to clear all of them: !token-mod --set statusmarkers|=
Thank you Jarren! =)