
I'm trying to get a macro going to change a token's size for one of my players now that the party is starting to use enlarging magic more often.
I wanted to do a set up like
?{What Size?|Medium,1|Large,2|Huge,3 }
!token-mod {{
--set scale|?{What Size?}g
}}
Which works, but always puts the number used to change the token size into chat. I switched it to
!token-mod {{
--set scale|?{What Size?|Medium,1|Large,2|Huge,3 }g
}}
Which just completely breaks. It doesn't do anything.
!token-mod {{
--set scale|?{What Size?}g
}}
Then I also have this code, which works and doesn't put anything into the chat, but is a little sloppy on the user experience for me, asking them to put in 1, 2, or 3 instead of selecting an actual size.
I was hoping to get a way to do this macro without "spamming" the chat with random numbers. Also I think I may have missed it, but is there a way to make a macro that just always changes a single token's size, rather than the selected token? It is mainly one party member that is changing size.