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

Vampire 5E Template

Is there any documentation on how to use the "vampire" template? I just want to make a couple of macros that will roll a set of dice or a set of dice with some hunger dice. I've been playing around but the template does not seem to be well behaved and is rolling a seemingly random number of dice.
1624032557

Edited 1624032589
Well, I think I figured it out. Since there seem to be no repositories of macro examples for most systems except what shows up in the forums, here are three helpful macros. All should work without API using the R0ll20 Vampire 5e sheet. RollNoHunger Rolls a number of 10 sided dice and shows the result. Left in the hunger dice in the code in case someone wants to modify it. &{template:vampire}{{attribute=None}}{{skill=None}}{{title=Straight Roll}}{{rolls=[[?{Dice|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15}]]}}{{hunger=[[0]]}}{{rollcount=?{Dice|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15}}}{{roll_1=[[1d10]]}},{{roll_2=[[1d10]]}},{{roll_3=[[1d10]]}},{{roll_4=[[1d10]]}},{{roll_5=[[1d10]]}},{{roll_6=[[1d10]]}},{{roll_7=[[1d10]]}},{{roll_8=[[1d10]]}},{{roll_9=[[1d10]]}},{{roll_10=[[1d10]]}},{{roll_11=[[1d10]]}},{{roll_12=[[1d10]]}},{{roll_13=[[1d10]]}},{{roll_14=[[1d10]]}},{{roll_15=[[1d10]]}}{{blood_roll_1=[[1d10]]}},{{blood_roll_2=[[1d10]]}},{{blood_roll_3=[[1d10]]}},{{blood_roll_4=[[1d10]]}},{{blood_roll_5=[[1d10]]}} RollWithHunger Rolls a number of 10 sided dice and shows the result. Asks for total dies to roll and how many of them are hunger dice. &{template:vampire}{{attribute=None}}{{skill=None}}{{title=Roll with Hunger}}{{rolls=[[?{Dice|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15} - ?{Hunger|1|2|3|4|5}]]}}{{hunger=[[?{Hunger|1|2|3|4|5}]]}}{{rollcount=?{Dice|1|2|3|4|5|6|7|8|9|10|11|12|13|14|15}}}{{roll_1=[[1d10]]}},{{roll_2=[[1d10]]}},{{roll_3=[[1d10]]}},{{roll_4=[[1d10]]}},{{roll_5=[[1d10]]}},{{roll_6=[[1d10]]}},{{roll_7=[[1d10]]}},{{roll_8=[[1d10]]}},{{roll_9=[[1d10]]}},{{roll_10=[[1d10]]}},{{roll_11=[[1d10]]}},{{roll_12=[[1d10]]}},{{roll_13=[[1d10]]}},{{roll_14=[[1d10]]}},{{roll_15=[[1d10]]}}{{blood_roll_1=[[1d10]]}},{{blood_roll_2=[[1d10]]}},{{blood_roll_3=[[1d10]]}},{{blood_roll_4=[[1d10]]}},{{blood_roll_5=[[1d10]]}} R2 Rolls 2 dice without hunger. This is an example that you can use to quickly modify to create any number of macros that roll a specific number. Just switch out "rolls" and "rollcount". Easy to paste "`#R" in front of a pool value in a handout if you are inserting a link if you make one of these for a range of values. ( NB: Links like this will not work if the sheet is popped out.) &{template:vampire}{{attribute=None}}{{skill=None}}{{title=Straight Roll}}{{rolls=[[2]]}}{{rollcount=2}}{{roll_1=[[1d10]]}},{{roll_2=[[1d10]]}},{{roll_3=[[1d10]]}},{{roll_4=[[1d10]]}},{{roll_5=[[1d10]]}},{{roll_6=[[1d10]]}},{{roll_7=[[1d10]]}},{{roll_8=[[1d10]]}},{{roll_9=[[1d10]]}},{{roll_10=[[1d10]]}},{{roll_11=[[1d10]]}},{{roll_12=[[1d10]]}},{{roll_13=[[1d10]]}},{{roll_14=[[1d10]]}},{{roll_15=[[1d10]]}}
1624042006
Andreas J.
Forum Champion
Sheet Author
Translator
Yesterday when I checked, it didn't seem Roll20 had created any page for it on the Char Sheet section of the Help Center, and it isn't the only "by Roll20" sheet that has no official documentation. And as they sheet was literally released just a few days ago, there is no community-sourced info on the Roll20 Wiki either. We don't even have access to the sourcecode, so the best way to get info in the roll template is to roll various buttons, then press the up arrow when you have the text chat selected, and it will show the last macro you used. You could also inspect the sheet with browser tools to get to the macros.
I did something similar to yours Dr. DM. Mine calculates the hunger of the selected token in the hunger rolls. Took me a while to decipher what the template was looking at. The Character sheet not having options for rolling disciplines and willpower checks is rough. I know they are still working on it so there is hope in the future.
1624077324

Edited 1624077388
Oosh
Sheet Author
API Scripter
Here you go. There only appears to be one, very large roll template, &{template:vampire}. There's a bit of HTML & Handlebars to parse through to make much sense out of it! I only gave it a quick prettify, the formatting might be a bit out.