So, some people might have problems even at such basic stuff as cracking a experience limit.
Gameserver reads rates as (real rate * 1000), it means, if you set rates to
35000, experience gain coefficent will be 35x. By default, gameserver forbidds making them more than 250 (2.5 x), but it's easy to crack.
So, open your SR_GameServer executable using OllyDBG, and patch the following addresses with following assembly codes.
================================================== ===========================
Individual experience ratio
Code:
0042714C F6C4 50 TEST AH,42
================================================== ===========================
Party experience ratio
Code:
004271F5 F6C4 42 TEST AH,42
================================================== ===========================
Item drop rate
Code:
004272A0 F6C4 42 TEST AH,42
================================================== ===========================
Gold drop amount rate
Code:
00427349 F6C4 42 TEST AH,42
================================================== ===========================
HWLAN (berserker) gain factor
Code:
004273CA |. F6C4 44 TEST AH,42
================================================== ===========================
Bypass creation of huge .dmp files (less lags)
Code:
00964060 81EC 6C060000 SUB ESP,66C
change command to
================================================== ===========================
To do it, follow this screenshots. Open the file using OllyDBG (F3)
Double-click the line you were jumped to, and...
Do same for all addresses.