
I have PCs, which have "init" which I suppose is autocalculated based on "initdexmod" and "initmiscmod", and NPCs which simply have "npcinit" which is a regular attribute. What I would like is to be able to select any tokens, regardless of whether they represent PCs or NPCs and do "!group-init" and get initiatives with tiebreakers. What I am getting is either PCs work or NPCs work depending upon which of my "Bonus Stat Groups" is on top. The others just roll a d20 with no modification and no tie-breaker. For PCs I did this: !group-init --add-group --bare init --tie-breaker init For NPCs I did: !group-init --add-group --bare npcinit --tie-breaker npcinit If the group for PCs is at index 1, I get the desired result: d20+init + init/100, for example "16.04". With the PCs on top, the NPCs only get "12" which is just a d20 if I examine the roll. The exact opposite behavior pertains if I promote the NPC group to 1. I have also tried using the following for the PCs, which works the same at just using "init": !group-init --add-group --bare initdexmod --bare initmiscmod --tie-breaker initdexmod --tie-breaker initmiscmod Any idea on how I can get the behavior I want? I've read everything several times and watched a few videos and I'm not getting it.