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

[Script,Snippet] Blind Checks for the 5th Edition OGL by Roll20

April 14 (4 years ago)

Edited April 14 (4 years ago)
Stephen S.
Pro
Marketplace Creator
Sheet Author
API Scripter

Create a macro (token action) called "BlindChecks" with the action "!BlindChecks."

Give all your players access to it.

With a single token selected, player clicks the macro.
Link to the Code

Player sees the following in the chat.


GM sees the following in the chat.


GM should use the left dice result for non-"advantage/disadvantage" situations.

Or pick the appropriate dice result for "advantage/disadvantage" situations.

Rogue: I look into the room to see if it seems safe.

GM: Blind roll please.

Rogue: [blind rolls]

GM: Seems perfectly safe to you.

Rogue: I step to the side and say to the rest of the party "After you."

April 14 (4 years ago)
The Aaron
Roll20 Production Team
API Scripter
Nice. =D
April 14 (4 years ago)

Edited April 14 (4 years ago)
vÍnce
Pro
Sheet Author

What's this? Gauss and then Stephen both post to the forums within the last week...  Must be a shift in the time space continuum.  A surprise, to be sure, but a welcome one.

This script fills an often requested feature.  I might try and hack modify this to work with PF...

April 14 (4 years ago)

Very nice, my players will like this. They asked me to do GM rolls of their skills for certain rolls that they don't want the know the result. Like navigating through a forest and getting lost because they roll low on their survival roll. This will still let them roll their fate but not know the results :) 

April 14 (4 years ago)
Stephen S.
Pro
Marketplace Creator
Sheet Author
API Scripter


∇ince said:

What's this? Gauss and then Stephen both post to the forums within the last week...  Must be a shift in the time space continuum.  A surprise, to be sure, but a welcome one.

This script fills an often requested feature.  I might try and hack modify this to work with PF...


Aaron berated me into cacheing some values to speed it up and to help with efficiency (he even wrote a code sample leaving me without excuses.)
Also making it so you can use it blind or in the open.
Update likely tonight.



April 14 (4 years ago)
vÍnce
Pro
Sheet Author

Thanks Aaron.

April 14 (4 years ago)
Stephen S.
Pro
Marketplace Creator
Sheet Author
API Scripter


∇ince said:

Thanks Aaron.


:/

April 14 (4 years ago)
Stephen S.
Pro
Marketplace Creator
Sheet Author
API Scripter

// OPen and Blind Checks for the 5th Edition OGL by Roll20

// Create a token action macro called "OpenChecks" with the action "!OpenChecks"

// Create a token action macro called "BlindChecks" with the action "!BlindChecks"

// Give all your players access to both.

Updated Script



April 15 (4 years ago)
vÍnce
Pro
Sheet Author

:-)

April 17 (4 years ago)
Stephen S.
Pro
Marketplace Creator
Sheet Author
API Scripter



Updated the script.... blind rolls have DMG look... open rolls have PHB look

April 18 (4 years ago)

Would it be possible to adapt it for pathfinder ?

I love this script!

April 18 (4 years ago)
Stephen S.
Pro
Marketplace Creator
Sheet Author
API Scripter


Renar said:

Would it be possible to adapt it for pathfinder ?


Yes. I think Vince is thinking about doing that.

April 19 (4 years ago)

Excellent work, Stephen. Honestly, this is one of those things I didn't realize I needed as a DM until you pointed out that I needed it as a DM. :)

Thank you!

May 07 (3 years ago)

Edited December 01 (2 years ago)
vÍnce
Pro
Sheet Author

Modified Stephen's awesome script so that it can be used with the Pathfinder Community Sheet.
https://gist.github.com/vince-roll20/79072ee7bd7e32c243556dea254f62e6

// Create a token action macro called "OpenChecks" with the action "!OpenChecks"

// Create a token action macro called "BlindChecks" with the action "!BlindChecks"

// Give all your players access to both.





May 26 (3 years ago)

Edited May 26 (3 years ago)

Hey 

I love this but i can't get the the part where the player gets the wisper that the roll has been sendt to work. it works finde if i do but not if they do it 

i play with the roll20 sheet

May 27 (3 years ago)

Edited December 27 (2 years ago)
vÍnce
Pro
Sheet Author


Mikkel said:

Hey 

I love this but i can't get the the part where the player gets the wisper that the roll has been sendt to work. it works finde if i do but not if they do it 

i play with the roll20 sheet

I was able to get it to work by removing the double quotes around ${values.who} from this line;

sendChat('API - QuantumRoll', `/w "${values.who}" Secret roll sent to GM. I'm sure its fine.`);

new line;

sendChat('API - QuantumRoll', `/w ${values.who} Secret roll sent to GM. I'm sure its fine.`);


>>>>>>>>>>>>>>>>>>>>>
edit/update as of 12/27/22'
>>>>>>>>>>>>>>>>>>>>>

FYI: The Aaron made an edit to the 5e OGL mod in this thread:
https://app.roll20.net/forum/permalink/10997836/

I've also updated the Pathfinder Community Sheet version here(BlindChecksPFCommunity.js)
and added a version that "should" work with the Pathfinder Official (BlindChecksPFOfficial.js)