Great Thread thanks this explain it! I feel like the experience loss is way overkill, my ships will never reach veteran status the way it is now. So these values I copied and pasted from your thread -if I wanted to try and change them in Defines.Lua Which ones would I change and to what value would be beneficial? Thanks!
“MANPOWER_LOSS_RATIO_ON_SUNK = 0.5, -- sunk ships will lose this ratio of their current manpower
MANPOWER_LOSS_RATIO_ON_STR_LOSS = 0.5, -- losing strength will make you also lose manpower at this ratio of total manpower
MIN_MANPOWER_RATIO_TO_DROP = 0.1, -- ships will not lose man power to below this ratio
DAILY_MANPOWER_GAIN_RATIO = 0.05, “
To begin with, it's rarely a good idea to change the game files directly; it works too, but requires constant re-shuffling once you need other mods or plain vanilla. Rather, you create a mod of your own and have fun over there (in C:\Users\*you*\Documents\Paradox Interactive\Hearts of Iron IV\mod\*yourmod*)
Then, create a *yourmod*_defines.lua file in mod\*yourmod*\common\defines and only include values you change (i.e. override), putting
NDefines.NNavy. before any actual line (in case you toy arond with just Navy).
As for the values, assuming you still want to stay realistic, I'd suggest dropping
MANPOWER_LOSS_RATIO_ON_STR_LOSS to maybe 0.2
Make the same for
MANPOWER_LOSS_RATIO_ON_SUNK if you too consider service manpower values to be inflated in the first place, albeit this one apparenltly won't help you to preserve ship experience. So
Code:
NDefines.NNavy.MANPOWER_LOSS_RATIO_ON_STR_LOSS = 0.2
etc.
There's also this line:
Code:
EXPERIENCE_LOSS_FACTOR = 1.00, -- percentage of experienced solders who die when manpower is removed
which is probably best to be changed alone instead if your only concern is just the ships presumably having to retain more XP on taking damage.
edit: there are in fact several ones with the same name, make sure you are in the correct section (i.e. navy, not army). Fortunately, working with the overrides as shown above requires you to specify the section either way.