Apr
5
3
3
In the Metin2 game, if you unlock it, it drops to a negative level and your belongings are lost. The time you spend during the game is considered a positive level. I will explain what you need to do to change and adjust these levels.
Open char_battle.cpp
You can use the code below to adjust rank points and other changes.
Open char_battle.cpp
Code:
m_iRealAlignment = MINMAX(-200000, m_iRealAlignment + iAmount, 200000);
You can use the code below to adjust rank points and other changes.
Code:
if (GetRealAlignment() >= 150000)
iAlignIndex = 0;
else if (GetRealAlignment() >= 100000)
iAlignIndex = 1;

