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

Items.otb Editor kinda buged, idk why... Help

Hashirama479

World of Ninja
Joined
Dec 19, 2016
Messages
536
Solutions
6
Reaction score
74
So I got a problem with my items.otb editor im using item.otb 0.3.9 also when I use a item.otb for tfs 0.4 its working perfect without any problem but once I add any custom sprite to it and trying to turn on the ot it says Im using the wrong items.otb version... Could someone help me out please?
 
Solution
Solved.

Removed this part from items.cpp


Code:
  else if(Items::dwMinorVersion != CLIENT_VERSION_861)
    {
        std::clog << "[Error - Items::loadFromOtb] Another (client) version of items.otb is required." << std::endl;
        return ERROR_INVALID_FORMAT;
    /
Solved.

Removed this part from items.cpp


Code:
  else if(Items::dwMinorVersion != CLIENT_VERSION_861)
    {
        std::clog << "[Error - Items::loadFromOtb] Another (client) version of items.otb is required." << std::endl;
        return ERROR_INVALID_FORMAT;
    /
 
Solution
Back
Top