I have a problem with a feat I'm trying to make called Background - Laborer
What I want it to do is give a 25% bonus on weight carried (a 10 strength would be 41/83/125 instead of 33/66/100), I've built the following code:
(Post-Attributes[User] P:100, I:1)
hero.child[Totals].field[tEncumLgt].value = round(hero.child[Totals].field[tEncumLgt].value * 1.25, 0, 0)
hero.child[Totals].field[tEncumMed].value = round(hero.child[Totals].field[tEncumMed].value * 1.25, 0, 0)
hero.child[Totals].field[tEncumHvy].value = round(hero.child[Totals].field[tEncumHvy].value * 1.25, 0, 0)
I get the weights I want for each encumbrance category, but when I give him a 35 lb item he goes to medium encumbrance...
Now I'm stuck, can anyone help?
BTW: I have moved phase around [post-attr (user)] is the earliest the code works
I've changed the priority (though, admittedly, I don't know exactly what I'm doing there)
What I want it to do is give a 25% bonus on weight carried (a 10 strength would be 41/83/125 instead of 33/66/100), I've built the following code:
(Post-Attributes[User] P:100, I:1)
hero.child[Totals].field[tEncumLgt].value = round(hero.child[Totals].field[tEncumLgt].value * 1.25, 0, 0)
hero.child[Totals].field[tEncumMed].value = round(hero.child[Totals].field[tEncumMed].value * 1.25, 0, 0)
hero.child[Totals].field[tEncumHvy].value = round(hero.child[Totals].field[tEncumHvy].value * 1.25, 0, 0)
I get the weights I want for each encumbrance category, but when I give him a 35 lb item he goes to medium encumbrance...
Now I'm stuck, can anyone help?
BTW: I have moved phase around [post-attr (user)] is the earliest the code works
I've changed the priority (though, admittedly, I don't know exactly what I'm doing there)