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

Frenzy Checks in Vampire the Masquerade (V5)

Having some trouble creating a macro for resisting Frenzy. The formula is Willpower + (Humanity/3) with Humanity rounded down. I'm not the best at macros, so here is what I have so far:  /roll ?{Willpower}d10>6 + ?{Humanity}/3)d10>6 The problem I'm finding is that Humanity/3 is being rounded to the nearest whole number whereas I need it to round down. I've tried "floor(x)" but that just breaks the macro. Help, please?  I would also like to add cs>6cf<5 to the macro as well,  showing all results of 6 and above in green and 5 and below in red, but have had some trouble with that as well.  
1534445509
The Aaron
Pro
API Scripter
Try: /roll ?{Willpower}d10>6cs>6cf<5 + [[floor(?{Humanity}/3))]]d10>6cs>6cf<5
It works! Thank you so much. 
1534447442
The Aaron
Pro
API Scripter
No problem!