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

Macro Question

I have this macro.. its a quick monster attack and it requests modifier - and it works great and rolls damage. However, how do I enter the second input to select damage: /gmroll  [[1d20 + ?{modifiers|0}]] @{target|AC}  [[2d6+3]] Damage Here is my script. It rolls preset damage but can I enter a second modifer input where I can enter the damage? Tks
1601763190
GiGs
Pro
Sheet Author
API Scripter
If you want to enter the damage in full, just add another query like /gmroll  [[1d20 + ?{modifiers|0}]] @{target|AC}  [[?{Damage|2d6+3}]] Damage The 2d6+3 is just setting a default - change that to whatever you want to appear in the query.
Great thats it! Thanks!