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

Add Bleed feat damage to Pathfinder Community Character Sheet macro

I have a Slayer with sneak attack and I currently have a macro setup to give me a drop down for sneak attack Yes/No. I am looking to add to the macro that if I say Yes to getting my sneak attack I will get my bleed damage of +1 per every 1d6 of sneak attack. Looking for some help adding this. Here is my current macro for sneak attack. [[ ?{Sneak?|No,0|Yes,1}*[[ [[ ceil((@{class-0-level}) / 2) ]]d6 ]] ]]
1702747654
vÍnce
Pro
Sheet Author
HiBenjamin B, I think you can just tack on the same formula you are using for the d6 amount.  Like so; [[ ?{Sneak?|No,0|Yes,1}*[[ [[ ceil((@{class-0-level}) / 2) ]]d6 + [[ ceil((@{class-0-level}) / 2) ]] ]] ]]
That worked great. Thank you.