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

I need help adding more PCs to quick status macro

Hello all, I found this macro code that gives quick status of PCs.  How do I get it to show more than one PC?  I'm struggling with the correct syntax.  Also, how do I get Initiative added in? &{template:default} {{name=Health Check}} {{PC 1= AC @{PC1|ac} - HP @{PC1|hp} / @{PC1|hp|max}}} ... Cheers, Jed
1590251421

Edited 1590251492
vÍnce
Pro
Sheet Author
You can substitute pc1, pc2, pc3, etc.  With the actual character name.  Use the character name with each attribute call as well. &{template:default} {{name=Health Check}} {{Bob= AC @{Bob|ac} - HP @{Bob|hp} / @{Bob|hp|max}}} {{Sue= AC @{Sue|ac} - HP @{Sue|hp} / @{Sue|hp|max}}} Each sheet uses specific attribute names, so showing initiative will depend on the sheet you are using, but it might look something like; &{template:default} {{name=Initiative}} {{Bob=@{Bob|init}}} {{Sue=@{Sue|init}}} Are you wanting to actually roll initiative and add the characters to the turn order? &{template:default} {{name=Roll Initiative}} {{Bob=[[1d20 + @{Bob|init} &{tracker} ]] }} {{Sue=[[1d20 + @{Sue|init} &{tracker} ]] }}
Thanks Vince, I'll take a look.  Initiative - sorry, I meant passive perception(!)
1590271727
vÍnce
Pro
Sheet Author
Jed Shields said: Thanks Vince, I'll take a look.  Initiative - sorry, I meant passive perception(!) this might work &{template:default} {{name=Passive Perception}} {{Bob=@{Bob| passive_wisdom }}} {{Sue=@{Sue| passive_wisdom }}}