- Oct 15, 2021
- 2,645
- 4,290
You are welcome.Many thanks for the help!! I was also able to raise the strip resist thanks to your aid. Much appreciated!!
Here is some bonus info. You can also change how accessory effects are calculated by changing assignment operators in the code. For example
accBonus -= 0.3;
can be changed to accBonus += 0.3;
or accBonus *= 1.3;
etc. Also keep in mind changing these codes won't change accessory descriptions in the game, they are in another file(www\loc\RemEff.json) and need to be manually changed to the reflect changes you have made.