I am using the 5th Edition OGL Roll 20 sheet
I have created a macro, which works, but I would like to ask for one piece of advice.
/w GM &{template:default}
{{name=Stats}} {{Name=@{selected|npc_name}}} {{Level=@{selected|level}}} {{AC=@{selected|AC}}}
{{HP=@{selected|npc_hpbase}}} {{Speed=@{selected|npc_speed}}} {{STR=@{selected|strength}}}
{{STR MOD=@{selected|npcd_str_mod}}} {{DEX=@{selected|dexterity}}} {{DEX MOD=@{selected|npcd_dex_mod}}}
{{CON=@{selected|constitution}}} {{CON MOD=@{selected|npcd_con_mod}}} {{INT=@{selected|intelligence}}}
{{INT MOD=@{selected|npcd_int_mod}}} {{WIS=@{selected|wisdom}}} {{WIS MOD=@{selected|npcd_wis_mod}}}
{{CHA=@{selected|charisma}}} {{CHA MOD=@{selected|npcd_cha_mod}}} {{Immunity=@{selected|npc_immunities}}}
{{Immunity Condition=@{selected|npc_condition_immunities}}} {{Senses=@{selected|npc_sensesbase}}}
{{Type=@{selected|npc_type}}} {{Challenge=@{selected|npcd_challenge}}} {{XP=@{selected|npcd_xp}}}
It looks like this:
Stats
Name | Zombie |
Level | 1 |
AC | 8 |
HP | 22 (3d8 + 9) |
Speed | 20 ft. |
STR | 13 |
STR MOD | (+1) |
DEX | 6 |
DEX MOD | (-2) |
CON | 16 |
CON MOD | (+3) |
INT | 3 |
INT MOD | (-4) |
WIS | 6 |
WIS MOD | (-2) |
CHA | 5 |
CHA MOD | (-3) |
Immunity | poison |
Immunity Condition | poisoned |
Senses | darkvision 60 ft. |
Type | Medium undead, neutral evil |
Challenge | 1/4 |
XP | (50 XP) |
What I would like to do is to put the attribute and the modifier on the same line. For example, STR 13 (+1) instead of putting the values on two lines as it is currently. I have made various attempts, which have all failed.
Does anyone have a suggestion about how to construct the syntax in order to accomplish my goal?