Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Tutorial] Increase max player limit for quest (2008)

Custom Title Activated
Loyal Member
Joined
Nov 14, 2007
Messages
1,829
Reaction score
177
This was based off the 2007 Guide http://forum.ragezone.com/f497/tutorial-increase-quest-mode-max-player-limit-589887/

I found the updated address's and got it working 100% (so far)

WARNING BACK-UP FILES ALWAYS

all you need to edit is matchserver.exe

Original Code:
Code:
0044994A               MOV DWORD PTR DS:[ESI+3C],4
00449951               MOV DWORD PTR DS:[ESI+34],EBX
00449954               CALL 00445840

Modified Code:
Code:
0044994A               JMP SHORT 00449951
0044994C               NOP
0044994D               NOP
0044994E               NOP
0044994F               NOP
00449950               NOP
00449951               MOV DWORD PTR DS:[ESI+34],EBX
00449954               CALL 00445840


Enjoy!
 
Custom Title Activated
Loyal Member
Joined
Nov 14, 2007
Messages
1,829
Reaction score
177
What's the point of the JMP SHORT?
honestly I don't know, I assumed thats the way it was done, used it randomly and it returned back the results I wanted so I guess it's fine
 
Custom Title Activated
Loyal Member
Joined
Nov 14, 2007
Messages
1,829
Reaction score
177
it never crashed once for me
 
Initiate Mage
Joined
Sep 4, 2008
Messages
4
Reaction score
0
0044994A MOV DWORD PTR DS:[ESI+3C],4
00449951 MOV DWORD PTR DS:[ESI+34],EBX
00449954 CALL 00445840

try to make that

0044994A MOV DWORD PTR DS:[ESI+3C],MAX_PLAYER_LIMIT
00449951 MOV DWORD PTR DS:[ESI+34],EBX
00449954 CALL 00445840

isn't that should be the right code? O:
 
Back
Top