I am trying to create a new shaman archetype that replaces existing shaman wandering spirits (e.g. Battle, Bones, Lore) with new spirits I have already designed.
I have managed to add my new spirits to the shaman wandering spirit selection. However, I cannot get to delete the above mentioned existing wandering spirits from the selection.
I have created a new shaman archetype (called 'Spirit Channeler'). If I check the 'Remove Secondary Abilities' box, my character no longer has access to any wandering spirit selection. If I leave the box unchecked, I can select both the new wandering spirits and the traditional wandering spirits.
I thought that maybe I could create an Eval Script for my archetype, something like
and that would be because my new existing spirits are assigned to a different category (abCategory.ShaSCPa instead of abCategory.ShaWanSpir). This way, I thought I could force Hero Lab to remove the CustSpPick.Secondary tag and therefore entirely remove the traditional Wandering Spirit from the selection, but I must be doing something wrong.
Any ideas on how to fix this? Thanks for your attention.
I have managed to add my new spirits to the shaman wandering spirit selection. However, I cannot get to delete the above mentioned existing wandering spirits from the selection.
I have created a new shaman archetype (called 'Spirit Channeler'). If I check the 'Remove Secondary Abilities' box, my character no longer has access to any wandering spirit selection. If I leave the box unchecked, I can select both the new wandering spirits and the traditional wandering spirits.
I thought that maybe I could create an Eval Script for my archetype, something like
Code:
foreach pick in hero where "abCategory.ShaWanSpir"
perform eachpick.delete[CustSpPick.Secondary]
nexteach
and that would be because my new existing spirits are assigned to a different category (abCategory.ShaSCPa instead of abCategory.ShaWanSpir). This way, I thought I could force Hero Lab to remove the CustSpPick.Secondary tag and therefore entirely remove the traditional Wandering Spirit from the selection, but I must be doing something wrong.
Any ideas on how to fix this? Thanks for your attention.