Dave T said: Re4XN said: Howdy, again! Currently trying to cram a bunch of Power Card macros into a query, which by itself is tiring since Roll20 nesting has poor support. Everything appears to work fine, except for one small detail: I can't change the color of the Power Card's text. Here's what I mean: As you can see, everything works well, except the bloody color format refuses to be interpreted. Here is the macro code: ?{Check|ST,!power {{
--bgcolor|#2e8b57
--erowbg|#fff
--orowbg|#e5e5e5
--name|Strength Check
--leftsub|@{selected|character_name}
--hroll|[[ [$st] @{selected|strength} + (?{ST Modifier|0}) + 0d0]] [[ [$roll] 3d6]]
--?? $roll.total <= $st.total ?? !Saved&#124;~C**$$#007f0e&#124;Success$$** ([^roll.total] vs. [^st.total])~C
--?? $roll.total > $st.total ?? !Saved&#124;~C**$$#ff0000&#124;Failure$$** ([^roll.total] vs. [^st.total])~C
&#125;&#125; |DX,1|IQ,2|HT,3|Per,4| Will,5} If you'll notice, it appears that the first set of '$' vanishes into thin air; I have tried replacing other characters, but to no avail. Am I missing something, or is this an actual limitation? You have to use the "|" after 'bgcolor', etc., maybe? Here's one of my attack cards: Keeghan: --titlefont|hamletornot --titlefontsize|1.3em --titlebackground|linear-gradient ( #ffffff4d , #fff0 ) --titlefontshadow|1px 4px 0px #000000, 0px 0px 0px, -1px 2px 0px #000000, -1px 0px 0px --subtitlefont|hamletornot --subtitlefontsize|.6em --bodyfont|hamletornot --txcolor|#ccc7b4 --bgcolor|#291e04 --leftsub|Requires --rightsub|Finesse or Ranged Weapon Correct, but the problem is that the Power Card is nested within a query. For instance, if you try to do the following in Roll20, it won't work: ?{Choose|Choice_1, ?{Choose again|Nested_Choice_1, 1|Nested_Choice_2, 2}|Choice_2, 2} In the example above, you have a query within a query, which is a problem, because Roll20 has difficulties parsing it, so you have to do some black magic to get it to work, namely, replacing every '|', ',' and '}' in your nested macros. It would look like this: ?{Choose|Choice_1, ?{Choose again&#124;Nested_Choice_1&#44; 1&#124;Nested_Choice_2&#44; 2&#125;|Choice_2, 2} If you look at my screenshot again, you can see that the background color is not the problem; the Power Card is green. The problem is the 'Success' text, which should also be green but isn't. I am unsure whether this is just a limitation or if there is a way around it.