- Discord
- HASTANUNCABB
nice oneMetin2 General EXP Rate Reduction
For those looking to reduce the overall EXP gain rate in-game, a small change to the char_battle.cpp file is all that's needed. This will reduce the EXP earned by all characters by a certain percentage.
First, you need to find the following line of code:
Kod:static void GiveExp (LPCHARACTER from, LPCHARACTER to, int iExp)
This function allows a character to gain EXP. The following line should be changed:
Current code:
Kod:to->PointChange (POINT_EXP, iExp, true);
Updated code:
<b>[Hidden content]</b>
This change reduces the EXP gain rate by 30% . The value 0.7 used here determines how much EXP is reduced. Entering a higher value will increase EXP gain, while entering a lower value will reduce EXP gain even more. For example, setting it to 0.5 will only allow characters to receive 50% of their earned EXP.
With this method, it is possible to optionally adjust the EXP balance in the game.
