Hey everyone, I'm trying to make a script that: -Checks if you're above level 9, and returns 1 for the number of hit dice. -For every 4th level after 9, it returns one more hit dice, so 2 for 13, etc. Right now, using the conditional statements section from the wiki, I have this: [[(ceil((level+1)/4)-1) + round((3)/(10*((level+1)-21+.1)))]] But I don't have any way to test it atm. Would something like this work, or am I on the wrong track? Thanks