So, I'm working on a passive stats chat menu macro, that includes a button to roll the stat, but I want that roll to be a gmroll/whispered. However, it seems I can only either: make a private menu that makes public rolls, or make a public menu that makes private rolls. The moment I attempt to combine the two, it breaks. Examples are simplified (only one stat shown for each just as a PoC) Example A (Private menu, public rolls): /w gm &{template:desc} {{desc=[Player Senses](" style=background-color:white;color:black;font-weight:bold;text-decoration:underline;font-size:25px;)
[Perception](" style=background-color:white;color:black;font-weight:bold;text-decoration:underline;font-size:20px;)
[Player1](~Player1|perception" style=background-color:white;color:darkred;font-weight:bold;font-size:15px;)}} Example B (Public menu, private rolls): &{template:desc} {{desc=[Player Senses](" style=background-color:white;color:black;font-weight:bold;text-decoration:underline;font-size:25px;)
[Perception](" style=background-color:white;color:black;font-weight:bold;text-decoration:underline;font-size:20px;)
[Player1](`/gmroll 1d20+@{Player1|perception_bonus}" style=background-color:white;color:darkred;font-weight:bold;font-size:15px;)}} However, when I attempt to do it this way, combining the two... " There was an error with your formula. Please try again. " Example C (private menu, private rolls): /w gm &{template:desc} {{desc=[Player Senses](" style=background-color:white;color:black;font-weight:bold;text-decoration:underline;font-size:25px;)
[Perception](" style=background-color:white;color:black;font-weight:bold;text-decoration:underline;font-size:20px;)
[Player1](`/gmroll 1d20+@{Player1|perception_bonus}" style=background-color:white;color:darkred;font-weight:bold;font-size:15px;)}} I've even tried escaping the backtick (`), but it still errors the same, nonspecific error. Also, have tried without any of the style information. Still happens. When you attempt to just perform a raw /w gm [Player1](`/gmroll 1d20+@{Player1|perception_bonus}) it fails. This shows that the issue is ultimately having a button that prints text in chat within a whisper. Does anyone know how this might actually be performed? Is there a way to convert [Player1](~Player1|perception) into a gmroll/whispered roll without having to modify the character sheet (like @{wtype} would need)? Or is there a way to make [Player1](`/gmroll 1d20) work inside of a whisper? I'm aware I could make the button call a macro that performs a gmroll, but that would ultimately require several additional macros to be created, which is just rather ugly and troublesome, so I would really rather not need that route. I also understand the possibility of performing the roll inside the menu itself, but again, not quite what I'm looking for.