Hello,
For normalization, I found this in one of the topics.
between MiddleRank & number 1, the player strength = pow(1 - Rank / MiddleRank, HighPower) * HighNorm.
So if I have MiddleRank as 75, player rank as 60, HighPower as 1.25 and HighNorm as 0.87, the calculation is
pow(1 - 60/75, 1.25) * 0.87
That is pow(0.2,1.25) * 0.87
That is 0.133 * 0.87 =0.116
But isn’t 0.116 very low for player ranked 60. How does the pow function work. Could you please give me an example with numbers? I need to understand it for creating my mod.
Thanks!!
