• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Compiling compile to 8.57

Amiroslo

Excellent OT User
Joined
Jul 28, 2009
Messages
6,768
Solutions
5
Reaction score
769
how to compile to 8.57?
im using TFS 0.3.6pl1
 
Open your C++ Program [I suggest STian's Dev-reppack]




Go to resources.h and scroll all the way to the bottom and replace your code with this.

Code:
#define CLIENT_VERSION_MIN 857
#define CLIENT_VERSION_MAX 857
#define CLIENT_VERSION_STRING "Only clients with protocol 8.57 are allowed!"

#define STATUS_SERVER_NAME "TheForgottenServer"
#define STATUS_SERVER_VERSION "0.3.6pl1"
#define STATUS_SERVER_CODENAME "Crying Damson"
#define STATUS_SERVER_PROTOCOL "8.57"

Then goto itemloader.h and search for this
CLIENT_VERSION_854 = 16,

When you have found that line replace it with

Code:
	CLIENT_VERSION_854 = 16,
	CLIENT_VERSION_855 = 17,
	CLIENT_VERSION_856 = 18,
	CLIENT_VERSION_857 = 19,

Now hit Ctrl + F9 in order to start the compiling process.
When it's done,if you don't have errors,then go to your source code folder and open the "dev-cpp" folder and check its contents,and you should find TheForgottenServer.exe!
Now just use it!

And VOILA! Thats it.
 
Back
Top