Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Need help on my Attack macro

I got my macro to show the damage I want, but is there any way I can have it Display the type of damage (Melee, Ranged, Bonus) like it would if I click from my character sheet? Here is my macro /roll ?{Choose Damage Type| Melee, 1d6 + @{dexterity_mod}+@{PB}| Ranged, 1d6 + @{dexterity_mod}+@{PB}| Bonus, 1d4 + @{dexterity_mod}+@{PB} } + [[ ?{Sneak Attack?|No, 0|Yes, 2d6|Crit, 4d6} ]] + [[ ?{D6CRIT?|No, 0|Yes, 1d6} ]] + [[ ?{D4CRIT?|No, 0|Yes, 1d4} ]] I couldn't find something like this with search, i could also be very tired and my brain is mush
That would depend entirely on what system and sheet you use. There should be resources for the sheet that would explain the templates it uses and what information is needed to recreate them in the proper format.
1590125937
GiGs
Pro
Sheet Author
API Scripter
The easiest way is to add a tag, like so /roll ?{Choose Damage Type| Melee, 1d6 + @{dexterity_mod}+@{PB} [Melee]| Ranged, 1d6 + @{dexterity_mod}+@{PB} [Ranged]| Bonus, 1d4 + @{dexterity_mod}+@{PB} [Bonus] } + [[ ?{Sneak Attack?|No, 0|Yes, 2d6|Crit, 4d6} ]] [Sneak] + [[ ?{D6CRIT?|No, 0|Yes, 1d6} ]] [d6Crit] + [[ ?{D4CRIT?|No, 0|Yes, 1d4} ]] [d4Crit] If you cant get the d6 and d4 crit on the same roll, you should combine those to reduce the number of clicks necessary /roll ?{Choose Damage Type| Melee, 1d6 + @{dexterity_mod}+@{PB} [Melee]| Ranged, 1d6 + @{dexterity_mod}+@{PB} [Ranged]| Bonus, 1d4 + @{dexterity_mod}+@{PB} [Bonus] } + [[ ?{Sneak Attack?|No, 0|Yes, 2d6|Crit, 4d6} ]] [Sneak] + [[ ?{CRIT?|No, 0|D6, 1d6|D4, 1d4} ]] [Crit]
GiGs said: The easiest way is to add a tag, like so /roll ?{Choose Damage Type| Melee, 1d6 + @{dexterity_mod}+@{PB} [Melee]| Ranged, 1d6 + @{dexterity_mod}+@{PB} [Ranged]| Bonus, 1d4 + @{dexterity_mod}+@{PB} [Bonus] } + [[ ?{Sneak Attack?|No, 0|Yes, 2d6|Crit, 4d6} ]] [Sneak] + [[ ?{D6CRIT?|No, 0|Yes, 1d6} ]] [d6Crit] + [[ ?{D4CRIT?|No, 0|Yes, 1d4} ]] [d4Crit] If you cant get the d6 and d4 crit on the same roll, you should combine those to reduce the number of clicks necessary /roll ?{Choose Damage Type| Melee, 1d6 + @{dexterity_mod}+@{PB} [Melee]| Ranged, 1d6 + @{dexterity_mod}+@{PB} [Ranged]| Bonus, 1d4 + @{dexterity_mod}+@{PB} [Bonus] } + [[ ?{Sneak Attack?|No, 0|Yes, 2d6|Crit, 4d6} ]] [Sneak] + [[ ?{CRIT?|No, 0|D6, 1d6|D4, 1d4} ]] [Crit] Thank you!!!