I spent my free time the last couple of months working on a couple of sheet commissions, so haven't had time to do the threats tab. I do have a plan for what I'll put in the threats, but if there's anything you'd like to see, please post away. Also, great work on the initiative tracker, it's nice to have someone to credit. Regarding bonus dice, if you click the stats or defence title, you can get a bonus roll (the defence sets minimum to +1, as its for active defence). These do take the wound level and other general modifiers of the active character into account, so if you want to make completely unmodified rolls, it's handy to set up a blank character for that purpose. Here's a macro you can use to roll a bonus modifier: &{template:torg} {{what=Bonus Roll}} {{value=[[10]]}} {{torgroll=[[?{Skill Quality?|
Skilled,1d20!10!!20|
Unskilled,1d20!10|
Disfavored,1d20}cs10cs>20cf1 ]]}} {{defense=[[0]]}} It'll give output like these: It'll give you a prompt asking for Skilled, Unskilled or Disfavoured. The last one above was rolled as Disfavoured, so didnt give a rollup on a roll of 20. It would be nice to show the label for which type was used, and also to not show both Bonus and Result on these rolls, since they are always equal. I'll think about adding these for naked bonus rolls. You can modify the macro to remove the query: just change this part: {{torgroll=[[?{Skill Quality?|
Skilled,1d20!10!!20|
Unskilled,1d20!10|
Disfavored,1d20}cs10cs>20cf1 ]]}} to one of these three: {{torgroll=[[1d20!10!!20cs10cs>20cf1 ]]}} {{torgroll=[[1d20!10cs10cs>20cf1 ]]}} {{torgroll=[[1d20cs10cs>20cf1 ]]}} Choose the one that matches the type of roll you want to make.