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

Pathfinder Jump Macro

I'm trying to create a macro to display both horizontal and vertical jump distance, both in feet. I can get it to do one or the other, but is it possible to do both? The jump height is 1/4 the horizontal distance.
Unfortunately, it is not possible to reference the results of a roll without the assistance of an API Script . Access to the API is available in games in which the Creator has an active Pro subscription. That said, you could use a math trick here to more or less accomplish this: Running jump result: [[ floor((1d20 + 2 [Acrobatics Modifiers]) * 100.25) / 100 ]] feet! The digits left of the decimal place are the result of the Acrobatics check. The digits right of the decimal place are that result divided by 4 and rounded down.
Thanks! I managed to make a working macro for my needs, it only gives horizontal, but it's a special jump that needed a lot of work anyway.