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 .
×

I don't want my macro results in the chat window...

I've been looking around to see how to suppress my macro results in the chat window, and not having any luck.  I've created a macro where we can automatically add or subtract one from a token's Tracker (playing 7th sea 2e).  We're using the tracker to track raises, and every time someone adds to the tracker number, that shows up in the chat window.  The code I'm using for the macro is: “+” action: /w gm [[ 1 &{tracker:+} ]].  Works like a champ, but it also shows up in chat, which is very "ugly".  Is there code I can add to make this NOT show up in Chat?
1596675371
keithcurtis
Forum Champion
Marketplace Creator
API Scripter
Just to be clear, the problem is that it is showing up in chat for you, the GM? It's not showing for your players, is it?
1596682844

Edited 1596683819
Oosh
Sheet Author
API Scripter
I would have thought you'd want that displayed in chat, to keep track of what's happening? It seems important for the GM to know what's going on. You can remove this from chat for everyone, but then you have absolutely no record of who's been doing what. ![[ 1 &{tracker:+} ]] @{selected|token_id} /w gm @{selected|token_name} raises 1. This might look better? The bold token_id call is just there to throw an error if no token is selected, so a player knows nothing got sent to the tracker. If you make this a Token Action instead, you can remove that part since the button will only be visible if the player has their token selected. You can remove the second line to make it totally silent, but then no one has any record of what's been rolled. Players love spam-clicking things when there's a bit of lag. You could even go a bit further with the Prefix trick. Create an Attribute on a Macros character sheet called trackerprefix , with the value @{tracker| Then change the macro to: /w gm @{selected|token_name} is now on [[@{Macros|trackerprefix}@{selected|token_name}}?{Raise?|+1|0, |-1} &{tracker}]] with a change of [[0+?{Raise?}]] This would keep an accurate record for the GM of what people are on, and what order it was done in, and is a single line universal macro.