Critical Hit Macro + appopriate damage roll

Show off your RPG maps, campaigns, and tokens. Share your gaming experiences and stories under General Discussion and save this forum for things you've created that may help others run their own games. Use the subforums when appropriate.

Moderators: dorpond, trevor, Azhrei, Gamerdude

Post Reply
Dedric
Cave Troll
Posts: 37
Joined: Fri Jul 04, 2008 1:31 pm

Critical Hit Macro + appopriate damage roll

Post by Dedric »

Took a alot of trial and error and a bit of help on RP tool forums but I got it to work.

The Base roll and Check
(!-- [DieRoll = 1d20] --) *Use arrows here not ()
[DieRoll+Mods] {if(DieRoll>19,"Critical Hit","")}
<br>
{if(DieRoll>19,Weapon1Crit,Weapon1Damage)}

Do not forget to add your attack mods to the mods part above.

Mine looks like this:
[DieRoll+StrBonus+EnhancementBonus+LevelBonus]

This will allow for a 1[W] hit to either try to hit or miss and will show a critical and roll the critical damage for you.

Inputting Damage Rolls:
In your tokens properties find and input your damage like so.

Weapon1Damage:
<b>Damage: </b>{Weapon Damage Roll 1d4,1d6,1d8 etc..+Whatever damage mods you have, I recommend using property names here and filling the appropriate property so you'll not have to edit these ever again, unless your adding more damage.

Weapon1Crit:
<b>Critical Hit Damage: </b>Magic Weapon and or High critical additional damage rolls then + Max Damage (1d6+1d6+16)
"Always" put your rolls first or you can error."

Mine look like this:
<b>Damage: </b>{1d10+StrBonus+EnhancementBonus+Weapon3Bonus}


To add a 2[W] or 3[W] hit check and damage roll just sub out
{if(DieRoll>19,Weapon1Crit,Weapon1Damage)}
to the name of new property fields where you enter the damage for the 2[W] or 3[W] like you do above.

To allow for font color changes just toss it all in a table like so.

<table>
<tr><td>

<font>Name of the power or what your want to do. </font>

</td></tr>
<tr><td>

(!-- [DieRoll = 1d20] --) *Use arrows here not ()
[DieRoll+StrBonus+EnhancementBonus+LevelBonus] {if(DieRoll>19,"Critical Hit","")}
<br>
{if(DieRoll>19,Weapon1Crit,Weapon1Damage)}

</td></tr>
<tr><td>

<font>Whatever effect happens.</font>

</td></tr>
</table>

You can also edit the color of the font in your Rolls.
When you enter your rolls in the token properties you can add font tags there as well to change their color.

Hope this helps.

Post Reply

Return to “User Creations”