• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Tibia 12x downgrade to 8.6

you could try using nekiro downgraded tfs 1.3 (8.6 version), and add everything from this datapack one-by-one, its not hard, just time consuming
 
you could try using nekiro downgraded tfs 1.3 (8.6 version), and add everything from this datapack one-by-one, its not hard, just time consuming
I will try do that
Post automatically merged:

you could try using nekiro downgraded tfs 1.3 (8.6 version), and add everything from this datapack one-by-one, its not hard, just time consuming
Now I get unable to load items otb and the console shutdown.
Can't even screenshot it
 
Last edited:
Still get the same problem even I keep the original otb from nekiro tfs
View attachment 46821

you can disable the otb verification, but you need to be sure if this otb has compatible with your map dat/otb.
 
you can disable the otb verification, but you need to be sure if this otb has compatible with your map dat/otb.
I will go check that
 
I did check items.cpp

LUA:
if (majorVersion == 0xFFFFFFFF) {
        std::cout << "[Warning - Items::loadFromOtb] items.otb using generic client version." << std::endl;
    } else if (majorVersion != 3) {
        std::cout << "Old version detected, a newer version of items.otb is required." << std::endl;
        return ERROR_INVALID_FORMAT;
    } else if (minorVersion < CLIENT_VERSION_1021) {
        std::cout << "A newer version of items.otb is required." << std::endl;
        return ERROR_INVALID_FORMAT;
I changed to
CLIENT_VERSION_860) still get the same error

Code:
if (majorVersion == 0xFFFFFFFF) {
        std::cout << "[Warning - Items::loadFromOtb] items.otb using generic client version." << std::endl;
    } else if (majorVersion != 3) {
        std::cout << "Old version detected, a newer version of items.otb is required." << std::endl;
        return ERROR_INVALID_FORMAT;
    } else if (minorVersion < CLIENT_VERSION_860) {
        std::cout << "A newer version of items.otb is required." << std::endl;
        return ERROR_INVALID_FORMAT;
    }
 
I'm sorry for being so annoying to you guys
[8.6/12X] [TFS1.3] Global + Source + Web + tools + Quest Reward System (https://otland.net/threads/8-6-12x-tfs1-3-global-source-web-tools-quest-reward-system.268391/) <<<<< this have tfs 1.3 exe inside the folder

nekiro/forgottenserver (https://github.com/nekiro/forgottenserver/tree/8.6-downgrade) <<<<<< this have no tfs exe inside.
 
Because you have to compile it yourself.
 
Back
Top