How do I raise the corruption limit?
I've looked around for this, but can't find the answer.
I've just reinstalled RTW and in the past I had the corruption limit of 50000 raised so that it didn't affect my game.
Now I can't find the file where this information is stored. Can anyone help?
Thanks!!
Re: How do I raise the corruption limit?
If you mean the bad traits that you get if you end turn with more than 50k in faction funds, the triggers for that are in export_descr_character_traits.txt
It probably looks something like...
Code:
;------------------------------------------
Trigger corruption1
WhenToTest CharacterTurnEnd
Condition EndedInSettlement
and Treasury > 50000
Affects Corrupt 1 Chance 3
Affects Aesthetic 1 Chance 3
Affects ExpensiveTastes 1 Chance 3
Affects Epicurean 1 Chance 3
Affects Embezzler 1 Chance 3
There might be more than one of these, with different thresholds.
Re: How do I raise the corruption limit?
Thanks!!
Thats exactly what I was after.