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!

Old Version Client Fix

~FlyFF DeV~
Joined
Mar 2, 2009
Messages
579
Reaction score
113
Noobs & lazybones requested it, so there it is:
Comprehensive guide on how to get rid of error: "old version of client"

There are 2 ways to do it:
First one is useful only if you do not have access to source or creating client to public if server uses different MSG_VER :
1. Open neuz.exe in resource hacker.
2. Find string table folder and open it. There should be folder named 1, open it. There should be resource table named 1042, yes u have to open it.
3. 6th value is the thing u need. It's called MSG_VER. You have to decide what code you want to be there. Now you must go to accountserver.ini and loginserver.ini and place same value you used in resource hacker( if it's different ofc ).
4. Compile Script. Then click file and select Save.

Now it should work.
For Imaged version of this method go there: [How to] fix old version of client - RaGEZONE forums

Why I do not recommend this method to people who have source? It's simple.
2nd method prevents changing MSG_VER so you can build many times without playing with resource hacker everytime.

If you are interested look:
1. Go to source folder. Enter to neuz folder. Find WinMain.rc file.
2. Create copy of it.
3. Open it in any text editor( notepad++ is very good for it ).
4. Search for IDS_SERVER_IP. If you found it you should see the table code.
5. Look at IDS_MSGVER. Yes it is the thing we want to change.
6. Change it's value to the one you preffer.
7. Now if it's different from the one you already have in accountserver.ini and loginserver.ini update it there too.
8. Save and close both text files.
9. Compile source.
10. Run server.
 
Last edited:
Newbie Spellweaver
Joined
Mar 10, 2011
Messages
7
Reaction score
2
Oh I have a solution for that.... Actually getting the build version from the neuz binary and updating your server configs ;)
 
~FlyFF DeV~
Joined
Mar 2, 2009
Messages
579
Reaction score
113
Updated both methods to work properly after following it like zombie. Thanks for info.
 
Back
Top