Heya. I'm trying to write a macro that'll run a standard Essence20 system dice roll, with dropdowns for the specialization dice. I've already got the base, Edge and Snag d20's working with the following code: Roll: [[?{Choose the roll type|Base,1d20|Edge,2d20kh1|Snag,2d20kl1}+?{Choose your Skill Die Type|0|1d2|1d4|1d6|1d8|1d10|1d12|2d8|3d6}]] But I can't seem to do the same when I move to the Specialization dice. I need to roll dice based on the following criteria If I choose a... d4: I roll a 1d4, and a 1d2, keep the highest of the two, and add that to the d20 roll I chose. d6: I roll a 1d6, a 1d4, and a 1d2, keep the highest of the three, and add that to the d20 roll I chose. d8: I roll a 1d8, a 1d6, a 1d4, and a 1d2, keep the highest of the four, and add that to the d20 roll I chose. d10: I roll a 1d10, a 1d8, a1d6, a 1d4, and a 1d2, keep the highest of the five, and add that to the d20 roll I chose. I don't know why, but my code breaks at the first hurdle. I read up on Nesting, but so far, none of the HTML modifications are working, and I get garbage out when I try.