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

Trying to create a nice RECOVERY CHECK macro. Please help

1611887148

Edited 1611887787
Working on making a nice Recovery Check macro for Pathfinder 2E, using the default PF2E character sheet. So far I've managed to create the following... @{Name|whispertype} &{template:rolls} {{limit_height=@{Name|roll_limit_height}}} {{charactername=@{Name|character_name}}} {{header=Recovery Check}} {{subheader=@{Name|character_name} attempts to rally}} {{roll01=[[1d20]] **vs DC** [[@{Name|hit_points_dying}+10]] }} ...which looks like... However, when I hover over the DC, it doesn't spell out what the modifiers are. (The 2 in the example above is the dying value.) Furthermore, I kind of want to incorporate the Current Dying condition into the displayed data, and have it automatically adjust the dying condition up or down based on whether or not the flat check beats the DC shown. I feel the above is the limit of my current understanding of Macros, and I'm hoping to get help finishing it up.
1. Which game are you playing? 2. Which character sheet are you using?
Jarren K. said: 1. Which game are you playing? 2. Which character sheet are you using? Sorry. Edited my post above to include that info.
1611890715

Edited 1611890860
David M.
Pro
API Scripter
I'm not familiar with PF rules to help with the second part of your question (though it sounds like you would need a call to the ChatSetAttr api script somewhere to modify a sheet attribute, and probably Powercards api for conditionals, or a custom api script). But for the first question, you can add descriptors to you inline rolls using single brackets, e.g. [[ 1d20[BASE] + @{selected|attribute}[BONUS] ]]  In this example, "BASE" and "BONUS" will be displayed in the tooltip when you mouse over the roll.   In your case, try the following and modify the descriptors as needed (CAPS not required): @{Name|whispertype} &{template:rolls} {{limit_height=@{Name|roll_limit_height}}} {{charactername=@{Name|character_name}}} {{header=Recovery Check}} {{subheader=@{Name|character_name} attempts to rally}} {{roll01=[[1d20[ROLL]]] **vs DC** [[@{Name|hit_points_dying}[DYING]+10[SOMETHING]]] }}