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

Hiding part (or all) of a macro roll table from PCs

Hi, To make my life simple, I am trying to have a one-button click macro to call on my weather and wind roll tables, plus a random encounter table for the day, but need to keep the encounter result whispered to gm (or the whole result barring that, as they don't really need to see weather, but can). Drawing on the work of others, my current macro is: &{template:default} {{name=**Weather & Encounter Report**}} {{General: [[1t[Summer-Weather]]]}} {{Wind: [[1t[Wind]]]}} {{Urban Encounter: [[1t[Random-City]]]}} But I cannot figure out how to whisper part or all to myself. Thanks in advance for any help
1670108706

Edited 1670108794
Gauss
Forum Champion
Put /w "charname" at the start of the macro where charname is your character's name. Include the quotes (deals with multi-part character names). Example:  /w "Ao" &{template:default} {{name=**Weather & Encounter Report**}} {{General: [[1t[Summer-Weather]]]}} {{Wind: [[1t[Wind]]]}} {{Urban Encounter: [[1t[Random-City]]]}} Alternately, put /w GM at the start.
1670108867

Edited 1670109050
Kraynic
Pro
Sheet Author
If you are the gm, you just add /w gm. /w gm &{template:default} {{name=**Weather & Encounter Report**}} {{General: [[1t[Summer-Weather]]]}} {{Wind: [[1t[Wind]]]}} {{Urban Encounter: [[1t[Random-City]]]}} If you want the players to see the weather, split it into 2 lines, so that they execute separately: &{template:default} {{name=**Weather Report**}} {{General: [[1t[Summer-Weather]]]}} {{Wind: [[1t[Wind]]]}} /w gm &{template:default} {{name=**Encounter Report**}} {{Urban Encounter: [[1t[Random-City]]]}} That should display the weather for everyone, and whisper the encounter to the gm.