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

> ERROR: Unable to load items (OTB)!

shioon

New Member
Joined
Feb 10, 2024
Messages
11
Reaction score
1
Hi again,
I got another problem as my title says.

I already changed in items.cpp this:
/* if(Items::dwMajorVersion == 0xFFFFFFFF)
std::cout << "[Warning - Items::loadFromOtb] items.otb using generic client version." << std::endl;
else if(Items::dwMajorVersion < 3)
{
std::cout << "[Error - Items::loadFromOtb] Old version detected, a newer version of items.otb is required." << std::endl;
return ERROR_INVALID_FORMAT;
}
else if(Items::dwMajorVersion > 3)

{
std::cout << "[Error - Items::loadFromOtb] New version detected, an older version of items.otb is required." << std::endl;
return ERROR_INVALID_FORMAT;
}
else if(Items::dwMinorVersion != CLIENT_VERSION_854)
{
std::cout << "[Błąd - Items::loadFromOtb] Wymagana jest inna (kliencka) wersja items.otb." << std::endl;
zwróć ERROR_INVALID_FORMAT;
}*/

But it still appears, even if i delete whole file items.cpp and items.otb the comment is the same. Nothing about missing file, so maybe it's something about directory in some file?
 
Back
Top