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 .
×
🍵 What is a cleric’s favorite hot drink? Divini-tea. 🍵
Create a free account

Macro Query - 5e

I'm trying to make a skill check macro using the template:npcaction , as I like the format quite a lot (ie the roll and some descriptive text). The problem I'm running into is that I cannot change the text in front of the roll from Attack to Check / Save / Roll .  So for example, I use: &{template:npcaction} {{attack=1}} {{name=Kyr}} {{rname=Stealth}} {{r1=[[1d20+10]]}} {{always=0}} {{description=Kyr moves as silent as a shadow cat}} and get the following:  If I rename the attack=1, the rolling goes away entirely. Is there any way to rename the Attack bit? 
1596426387
Oosh
Sheet Author
API Scripter
Try this instead: &{template:npcatk} {{attack=1}} {{type=save}} {{name=Kyr}} {{rname=Stealth}} {{r1=[[1d20+10]]}} {{normal=1}} {{description=Kyr moves as silent as a shadow cat}} The {{type}} field will change the name of the word "Attack", though there's something wrong with the npcaction template and it isn't working. The {{attack}} field is just a flag to display the attack rolls. More information here, though it's not all accurate any more.
That is perfect, thank you Oosh!