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

Upgrade items

MaR0

Banned User
Joined
Apr 16, 2018
Messages
272
Solutions
3
Reaction score
29
I'm trying to upgrade items from 8.00 to 8.10 but it's says
Code:
:: Loading items.otb...

Error: Unable to load data/items/items.otb!
here's source that i edit
items.cpp
C++:
if(Items::dwMajorVersion != 2){
        std::cout << "Not supported items.otb version." << std::endl;
        return ERROR_INVALID_FORMAT;
    }
  
    if(Items::dwMajorVersion == 0xFFFFFFFF){
        std::cout << "[Warning] Items::loadFromOtb items.otb using generic client version." << std::endl;
    }
    else if(Items::dwMinorVersion != CLIENT_VERSION_810){
        std::cout << "Not supported items.otb client version." << std::endl;
        return ERROR_INVALID_FORMAT;
    }
itemsloader.cpp
C++:
CLIENT_VERSION_810 = 8,
but it's not working, does anybody here can help
thanks
 
Back
Top