
Hi everyone, to those who help I thank you preemptively. In Mutant: Year Zero, players who roll initiative have to roll a d6 and then add their agility attribute to the value. (eg. their agility is 3, they roll a 5 so 5+3=8) I have set up an initiative macro for this, however I want it to add to the turn tracker automatically. Here's the simple macro of what I have: /em Initiative /r d6 &{tracker:+} /r ? {Agility Bonus|0} While this is fine at adding the d6 result to the turn tracker, it does not completely encompass what I want. The problem is, when I attempt to add the &{tracker} command or {tracker:+} command to the Agility bonus section, it never actually adds to the result. eg. /em Initiative /r d6 &{tracker} /r ? {Agility Bonus|0} &{tracker:+} This yields the same results as the other. Does anyone have some advice on how to make this macro work?