ROTTO said: Here is what I'm using. &{template:general} {{color=blue}} {{subtag=@{selected|character_name} rolls for init}} &{template:general} {{Rolls [[1d10- @{selected|surprisebonus} +?{Initiative Modifiers?| Normal, 0 | Hasted, -2 | Slowed, 2 | HighGround, -1 | SetToCharge, -1 | WadingOrSlipery, 4 | Hold Action, 3| Tangled Climbing Held, 6 | Surprised 2 seg, 2| Surprised 3 seg, 3| Surprised 4 seg, 4}+?{Missile Attack Bonus (16=-1 17=-2 18 and 19 -3) or other modifiers?|0}[DM] &{tracker}]] for initiative!}} {{lowest goes first}} Thanks for the initiative macro Rotto. I might suggest wrapping parenthesis around the mods. Macros can break if they include consecutive operators. ie "- -" (mods on the sheet may or may not include "+/-") While the surprise bonus shows "+3" on the sheet to match the PHB, the actual value is "-3" to work with macros. So to prevent the "-(-3)" which actually adds 3.., I also changed your macro to add the surprise bonus within parenthesis to honor the -3 "... 1d10 + (@{selected|surprisebonus}) ..." example; &{template:general} {{color=blue}} {{subtag=@{selected|character_name} rolls for init}} &{template:general} {{Rolls [[1d10 + (@{selected|surprisebonus}) + (?{Initiative Modifiers?| Normal, 0 | Hasted, -2 | Slowed, 2 | HighGround, -1 | SetToCharge, -1 | WadingOrSlipery, 4 | Hold Action, 3| Tangled Climbing Held, 6 | Surprised 2 seg, 2| Surprised 3 seg, 3| Surprised 4 seg, 4}) + (?{Missile Attack Bonus (16=-1 17=-2 18 and 19 -3) or other modifiers?|0})[DM] &{tracker}]] for initiative!}} {{lowest goes first}}