Well I can choose now the attribute that has a +2 at creation.
But here is the thing if this attribute already has a value,as per Racial Bonus in the racStr field for example, then I get this error:
Attempt to use inconsistent operator for field adjustment with history tracking for field "trtRacial".
Lets say that one race has "+2 to any attribute and -2 Constitution" and the player what the +2 optional in Con to erase the -2.
The race has a Racial bonus: -2 Con stored in racCon, and is tracked with trtRacial, but at the selection of Constitution in the menu, HL pops up the above error.
Moreover one race has "+2 to any and -2 to any" if I select in any of this the same attribute; the second time I do that, the error "pops"
I solve the first making a new field called racCreat (name= Creation bonus)
and I'm thinking in modify that (to racCreatP, name= Creation Plus Bonus) and create a new one: racCreatM, name Creation Minus Bonus)
I think this solve the trouble but is not "elegant"
Is any other way to access/modify the trtRacial instead??
Right now I have this:
I presume here is the error.
But here is the thing if this attribute already has a value,as per Racial Bonus in the racStr field for example, then I get this error:
Attempt to use inconsistent operator for field adjustment with history tracking for field "trtRacial".
Lets say that one race has "+2 to any attribute and -2 Constitution" and the player what the +2 optional in Con to erase the -2.
The race has a Racial bonus: -2 Con stored in racCon, and is tracked with trtRacial, but at the selection of Constitution in the menu, HL pops up the above error.
Moreover one race has "+2 to any and -2 to any" if I select in any of this the same attribute; the second time I do that, the error "pops"
I solve the first making a new field called racCreat (name= Creation bonus)
and I'm thinking in modify that (to racCreatP, name= Creation Plus Bonus) and create a new one: racCreatM, name Creation Minus Bonus)
I think this solve the trouble but is not "elegant"
Is any other way to access/modify the trtRacial instead??
Right now I have this:
Code:
perform field[usrChosen1].chosen.field[trtRacial].modify[+,2,"Racial"]
I presume here is the error.