View Single Post
dungeonguru
Senior Member
 
Join Date: May 2016
Posts: 608

Old September 28th, 2019, 09:09 AM
I assume you've done a copy and you're looking at the script and are seeing:

hero.child[aINT].field[Minimum].value = maximum(19,hero.child[aINT].field[Minimum].value)

and you can tell that INT is being set.

If you wanted to additionally set CHA you would need to copy that line and change INT to CHA like:

hero.child[aCHA].field[Minimum].value = maximum(19,hero.child[aCHA].field[Minimum].value)

You would also want to change the 19 to an 18 in your example.

The code here sets the scores to 19 unless you have a higher score, so basically if you change to 18 the same would apply.

The ability scores are aSTR, aDEX, aCON, aINT, aWIS, aCHA
dungeonguru is offline   #2 Reply With Quote