• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[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