raventower
Member
Been trying to add 3rd Party Class,treats,feats,etc. to hero lab (would buy it outright if it was available in HL)
Getting this error with the class now:
Pic 'cCovMed' has been orphaned due to missing thing in batch '711'
Menu-selection 'cCovMed' on pick 'Totals'no longer exists within data files
I also added a condition as it seem the easiest way to add the drawback I had which only happens when I dont have a bound spirit/constellation for 24 hrs. I take -4 to skill checks,attacks, and saving throws. It showed up twice. I copied the script from the sickened condition and modified it. Here is the script :
~ If we're in output mode, don't do anything
doneif (state.isoutput <> 0)
~ If we're not enabled and haven't been activated externally, get out now
if (field[pIsOn].value = 0) then
doneif (hero.tagis[Condition.pcnODC2] = 0)
endif
~ -4 Attack
hero.child[Attack].field[Penalty].value -= 4
~ -4 to all saves
hero.child[svAll].field[Penalty].value -= 4
~ -4 Skill Checks
hero.child[AllSkills].field[Penalty].value -= 4
Also is there any good resources in learning how to add this content?
Getting this error with the class now:
Pic 'cCovMed' has been orphaned due to missing thing in batch '711'
Menu-selection 'cCovMed' on pick 'Totals'no longer exists within data files
I also added a condition as it seem the easiest way to add the drawback I had which only happens when I dont have a bound spirit/constellation for 24 hrs. I take -4 to skill checks,attacks, and saving throws. It showed up twice. I copied the script from the sickened condition and modified it. Here is the script :
~ If we're in output mode, don't do anything
doneif (state.isoutput <> 0)
~ If we're not enabled and haven't been activated externally, get out now
if (field[pIsOn].value = 0) then
doneif (hero.tagis[Condition.pcnODC2] = 0)
endif
~ -4 Attack
hero.child[Attack].field[Penalty].value -= 4
~ -4 to all saves
hero.child[svAll].field[Penalty].value -= 4
~ -4 Skill Checks
hero.child[AllSkills].field[Penalty].value -= 4
Also is there any good resources in learning how to add this content?