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

Silent roll after a select list?

I have this which (and I know you're going to be amazed) works perfectly: @{selected|character_name} ?{Perception|     Spot, **Spot:**  [[1d20+@{selected|spot}]]|     Listen, **Listen:**  [[1d20+@{selected|listen}]]|  but I'd like to duplicate it such that when I, the DM, select it, it sectretly rolls Spot or Listen for the PC so I know if they have noticed Oncoming Doom. Is there an easy way to do this Thanks as ever!
Very easy. preface it with /w GM
Kinda works; doesn't offer a choice any more but rolls both, I can probably live with that though
Actually, I went with  /w GM @{selected|character_name}  **Spot:**[[1d20+@{selected|spot}]]  **Listen:**  [[1d20+@{selected|listen}]] Simpler, and not unlikely to want both at once anyway Cheers!
1604169496
GiGs
Pro
Sheet Author
API Scripter
Hugh Foster said: Kinda works; doesn't offer a choice any more but rolls both, I can probably live with that though Dakota suggested adding /w GM to the start of the macro. That should do exactly what you needed, if you  - it shouldnt cause both rolls to be made. Maybe the fact you havent ended the query properly is causing an issue. You end with an | but it should end with }. Try this /w GM @{selected|character_name} ?{Perception|  Spot, **Spot:**  [[1d20+@{selected|spot}]]|  Listen, **Listen:**  [[1d20+@{selected|listen}]] } Personally I'd make a rolltemplate, like /w GM &{template:default} {{name= @{selected|character_name}}} ?{Perception|  Spot, {{**Spot:**=[[1d20+@{selected|spot}]]|  Listen, {{**Listen:**=[[1d20+@{selected|listen}]] } }}
Brilliant. Thanks all. Appreciated :)