I want to edit the "Finding Haleen" trait from Legacy of Fire. It's too strong, in my opinion.
At present, it adds +1hp and +1skill point for every level in your favored class. I want it to add +1hp or +1 skill point.
The Eval Script reads:
How can I make this either/or, but not both?
At present, it adds +1hp and +1skill point for every level in your favored class. I want it to add +1hp or +1 skill point.
The Eval Script reads:
var searchexpr as string
var classcount as number
doneif (field[usrChosen1].ischosen = 0)
searchexpr = "thingid." & field[usrChosen1].chosen.idstring
foreach pick in hero from BaseClLev where searchexpr
classcount +=1
nexteach
#resmax[resSkill] += classcount
herofield[tHP].value += classcount
How can I make this either/or, but not both?