Hi all! I've borrowed (thank you google and roll20) a magus macro and it has served me oh so well. However I've come to the conundrum of other people occasionally having to use my macro and they simply dont know as much as I do about my magus. So I was hoping to modify the macro to more clearly give the information - in this case it's determining the attack modifier that would be added via various buffs or penalties (Spell Combat / Flanking / Shocking Grasp bonus, etc.). What I'm having trouble with is the formatting of the actual words in the roll query. From what I can tell, there's only really 2 parts to a roll query, the label and the result. Result is fine, it'll be a simple text box to add the number into (query ends in |+0}). But I was hoping to present the options in a list-like format as opposed to just a continuous line of text. Something along the lines of: {Attack Modifier: (list here of various pluses and minuses). I've tried to format the box in any way and have come up short - I dont think it's possible but I figured I'd ask. Likewise, similarly, since the text in the box is also the label, it makes recalling the results in later uses (such as actually adding the modifier to the attack roll) pretty silly, as you can't @{This super long text line with multiple entries: Such as this one / or this one / and maybe this one too}. Are there any tips in better ways to handle this? Or is the best answer to simply do as the original macro does, and simply do a whole bunch of roll queries? For reference, the macro currently used: @{PC-whisper} &{template:pf_attack} ?{Spell Combat|+0|-2} ?{Enhancement Bonus|+0|+1} ?{Flanking|No,+0|Yes,+2} ?{Keen|No,0|Yes,2} ?{Shocking Grasp Bonus|+0|+3} ... {{attack=[[ 1d20cs>[[@{crit-target} - ?{Keen}]] + @{attack_macro} + [[ ?{Spell Combat} ?{Enhancement Bonus} ?{Flanking} ?{Shocking Grasp Bonus} ]] ... It would be significantly cleaner to have something like: @{PC-whisper} &{template:pf_attack} ?{attack modifier | +0} .... {{attack =[[ 1d20cs>[[@{crit-target} - ?{Keen}]] +@{attack_macro} + ?{attack modifier} - but with the attack modifier query also giving out the specific bonuses from me, and a line about any potential other bonuses