So I've got an archetype that gets no 0 level spells. Now I've already given it -999 in each 0 level slot and I even used linkage[varies] to change the lowest level spell to 1. What I would like to do is remove the spells from the list and I figured I could using the ClsDenySp tag group. I set up this script running at Post-Levels/9000 and it seems to get rid of some spells, but it appears it's only spells out of the Core Rulebook. Any suggestions in pulling this off or should I just call it good and leave them in?
Thanks,
Andrew
Thanks,
Andrew
Code:
foreach pick in hero where "sLevel.0"
var denyspell as string
denyspell = "ClsDenySp." & eachpick.idstring
perform linkage[varies].assignstr[denyspell]
debug denyspell
nexteach