
My apologies if this is documented somewhere, I've looked at a lot of things trying to find it before asking. I'm using the TokenMod script to set the value of the first bar on a token that is selected. This works from chat: !token-mod --set @{selected|token_id} bar1|30 This also works from chat: !token-mod --set @{selected|token_id} bar1|-5 I would like to invoke this more easily, from the chat, so I made this macro, called #shp: !token-mod --set bar1_value| What I want is for the macro to pass whatever comes after #shp to the invocation of token-mod, but I can't get it to work. Adding a + at the end, which works with roll macros, does not appear to work here. This definition of the macro works fine, but will always set the value to 20 when I invoke #shp (not that useful): !token-mod --set bar1_value|20 This definition of the macro also works fine, but requires me to enter the desired value via an input box: !token-mod --set bar1_value|?{HP} Is there a way to turn `#shp +5` into `!token-mod --set bar1_value|+5` via macro definition? Or would I have to write a script to effectively do the same thing? Thanks, Tadhg