• 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!

Changing version tfs

Bouczas

New Member
Joined
Mar 9, 2013
Messages
36
Reaction score
0
Hi, I have tfs 0.3.7 and converted it to client 9.6, But what's about items.otb, he can't read this items.otb from 9.6.
How to change version of items.otb reading in tfs or how to upgrade reading versions ?
 
If you look under items.cpp and find:
Code:
else if(Items::dwMinorVersion < CLIENT_VERSION_961)
{
        std::cout << "A newer version of items.otb is required." << std::endl;
        return ERROR_INVALID_FORMAT;
}

You can change the OTB version check.
 
Back
Top