I am currently working on adding the latest version of the Mystic from the Unearthed Arcana.
At 4th level the Mystic gains the Strength of Mind ability. This ability allows you to change your Proficiency with Wisdom saves to proficiency with any other save except Intelligence (you already have it).
The part of the code that grants the new Proficiency save works fine, but the part that removes the existing WIsdom save proficiency doesn't.
I am currently using Phase: Pre-levels, Priority 10000. Here is the code:
Should I be splitting the scrip in to 2 different ones with different Phases? Should I be using a different Phase then Pre-levels?
On a separate note: Anyone noticed an issue with resistances not showing up under Specials? The Mystic gains Resistance to Psychic damage and though my script puts it on the hero, it doesn't show under Special.
I tried a Tiefling who gains Resistance to Fire and it doesn't show up either. I am wondering whether this is something I've messed up on my end or a bug in Hero Lab 5e.
At 4th level the Mystic gains the Strength of Mind ability. This ability allows you to change your Proficiency with Wisdom saves to proficiency with any other save except Intelligence (you already have it).
The part of the code that grants the new Proficiency save works fine, but the part that removes the existing WIsdom save proficiency doesn't.

I am currently using Phase: Pre-levels, Priority 10000. Here is the code:
perform hero.delete[ProfSave.svWIS]
if (field[usrIndex].value = 0) then
perform hero.assign[ProfSave.svSTR]
elseif (field[usrIndex].value = 1) then
perform hero.assign[ProfSave.svDEX]
elseif (field[usrIndex].value = 2) then
perform hero.assign[ProfSave.svCON]
elseif (field[usrIndex].value = 3) then
perform hero.assign[ProfSave.svWIS]
elseif (field[usrIndex].value = 4) then
perform hero.assign[ProfSave.svCHA]
endif
Should I be splitting the scrip in to 2 different ones with different Phases? Should I be using a different Phase then Pre-levels?
On a separate note: Anyone noticed an issue with resistances not showing up under Specials? The Mystic gains Resistance to Psychic damage and though my script puts it on the hero, it doesn't show under Special.
I tried a Tiefling who gains Resistance to Fire and it doesn't show up either. I am wondering whether this is something I've messed up on my end or a bug in Hero Lab 5e.