Hullo. I'm trying to make a Macro for my Jedi in Star Wars Saga. The Macro I'm currently working on will simulate the Force Power Battle Strike. The steps are thus: My character rolls his skill check Use The Force If the result is 15-19, he get's to add a +1 Force Bonus to his eventual attack roll and 1d6 of damage to his eventual damage roll. If the result is 20-24, he get's to add a +1 Force Bonus to his eventual attack roll and 2d6 of damage to his eventual damage roll. If the result is 25 and above, he get's to add a +1 Force Bonus to his eventual attack roll and 3d6 of damage to his eventual damage roll. I want to use a Template to contain the activity, and I did some research into the roll templates. Here's what I came up with: &{template:default} {{name=Battle Strike}} {{Use The Force Check=[[1d20+@{Darius|UseTheForce}+?{Fool's Luck|0}]]}} {{#rollBetween() Use The Force Check 15 19}} {{Damage=[[1d6]]}} {{/rollBetween() Use The Force Check 15 19}} {{#rollBetween() Use The Force Check 20 24}} {{Damage=[[2d6]]}} {{/rollBetween() Use The Force Check 20 24}} {{#rollGreater() Use The Force Check 25}} {{Damage=[[3d6]]}} {{/rollGreater() Use The Force Check 25}} Battle Strike Use The Force Check 19 #rollBetween() Use The Force Check 15 19 Damage 12 /rollBetween() Use The Force Check 15 19 #rollBetween() Use The Force Check 20 24 /rollBetween() Use The Force Check 20 24 #rollGreater() Use The Force Check 25 /rollGreater() Use The Force Check 25 The numbers vary, but the Damage always rolls 3d6, no matter what number the UTF Check turns up, and the Helper Functions aren't hidden at all Any ideas on what I'm doing wrong?