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 .
×

Help with a simple Macro (I think)

Can someone help with a descriptive spell Marco that prints some text (spell description) and then rolls damage but calls out the target token. So when I click on a target token (Monster token) and click the macro I get the damage roll (1d6+1) and it call out X damage to <Monster> Example: Character moves his hands and mumbles some accent words and a bolt of energy strikes <Target selected> for <Damage roll> Damage  Can anyone help me with this?  I can get everything working but I don t know how to call out the @target-Selected Thanks in advance
1610310394
Jordan C.
Pro
API Scripter
If you just need the token name you can get it two ways (target or selected) with these: @{target|token_name} @{selected|token_name} Is this the solution you need?
Ahh yes.   @{selected|token_name} what I want but how do I add on to that for the damage roll @{selected|token_name} takes [{/roll 1d6+1}] Damage does not work.
1610313256
Jordan C.
Pro
API Scripter
Inline roll syntax is what you would need so this should work: @{selected|token_name} takes [[1d6+1]] damage
Awesome.. Thank you.