• 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 protocol 8.62

Venn

Member
Joined
Aug 16, 2009
Messages
547
Reaction score
20
any one know how to set protocol from 8.60-8.62 ?
i got edit this:
Code:
#define CLIENT_VERSION_MIN 860
#define CLIENT_VERSION_MAX 862
#define CLIENT_VERSION_STRING "Only clients with protocol 8.60 up to 8.61 are allowed!"

#define STATUS_SERVER_NAME "TheForgottenServer"
#define STATUS_SERVER_VERSION "0.3.6"
#define STATUS_SERVER_CODENAME "Crying Damson"
#define STATUS_SERVER_PROTOCOL "8.62"

and i got debug:
308ehj4.jpg
 
Last edited:
open itemloader.h and add
PHP:
	CLIENT_VERSION_862 = 22
to this
PHP:
	CLIENT_VERSION_750 = 1,
	CLIENT_VERSION_755 = 2,
	CLIENT_VERSION_760 = 3,
	CLIENT_VERSION_770 = 3,
	CLIENT_VERSION_780 = 4,
	CLIENT_VERSION_790 = 5,
	CLIENT_VERSION_792 = 6,
	CLIENT_VERSION_800 = 7,
	CLIENT_VERSION_810 = 8,
	CLIENT_VERSION_811 = 9,
	CLIENT_VERSION_820 = 10,
	CLIENT_VERSION_830 = 11,
	CLIENT_VERSION_840 = 12,
	CLIENT_VERSION_841 = 13,
	CLIENT_VERSION_842 = 14,
	CLIENT_VERSION_850 = 15,
	CLIENT_VERSION_854_OLD = 16,
	CLIENT_VERSION_854 = 17,
	CLIENT_VERSION_855 = 18,
	CLIENT_VERSION_860_OLD = 19,
	CLIENT_VERSION_860 = 20,
	CLIENT_VERSION_861 = 21,
 
cause packets are different you will have to find out that packets, 8.61 client crashes also

[you even have reason in log, unknown packet type...]
 
where can i download it ?
and the newest rev is for tibia 8.61 yes?
rev 83 tfs 0.3.6pl1 is the newest?
 
Last edited:
open itemloader.h and add
PHP:
	CLIENT_VERSION_862 = 22
to this
PHP:
	CLIENT_VERSION_750 = 1,
	CLIENT_VERSION_755 = 2,
	CLIENT_VERSION_760 = 3,
	CLIENT_VERSION_770 = 3,
	CLIENT_VERSION_780 = 4,
	CLIENT_VERSION_790 = 5,
	CLIENT_VERSION_792 = 6,
	CLIENT_VERSION_800 = 7,
	CLIENT_VERSION_810 = 8,
	CLIENT_VERSION_811 = 9,
	CLIENT_VERSION_820 = 10,
	CLIENT_VERSION_830 = 11,
	CLIENT_VERSION_840 = 12,
	CLIENT_VERSION_841 = 13,
	CLIENT_VERSION_842 = 14,
	CLIENT_VERSION_850 = 15,
	CLIENT_VERSION_854_OLD = 16,
	CLIENT_VERSION_854 = 17,
	CLIENT_VERSION_855 = 18,
	CLIENT_VERSION_860_OLD = 19,
	CLIENT_VERSION_860 = 20,
	CLIENT_VERSION_861 = 21,

What about CLIENT_VERSION_862 = 22 ? fail.

Anyway, just go to my thread and use the code there and edit it to 8.62
 
where in
items.cpp i have to add this ?
Code:
    else if(Items::dwMinorVersion != 19)
    {
        std::cout << "[Error - Items::loadFromOtb] Another (client) version of items.otb is required." << std::endl;
        return ERROR_INVALID_FORMAT;
    }
i'm useing tfs 0.3.6pl1 rev 83
 
Last edited:
What about CLIENT_VERSION_862 = 22 ? fail.
Anyway, just go to my thread and use the code there and edit it to 8.62

can't you read? I said, add "CLIENT_VERSION_862 = 22" Where is the fail? I just want to help.
so where i can get it ?
venn, donate to OTland to use 0.4
 
Last edited:
Back
Top