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

Search results

  1. J

    how to make this function take the base vocation instead of the previous vocation?

    void Party::updateVocationsList() { std::set<uint32_t> vocationIds; uint32_t vocationId = leader->getVocation()->getFromVocation(); if (vocationId != VOCATION_NONE) { vocationIds.insert(vocationId); } for (const Player* member : memberList) { vocationId =...
  2. J

    Party shared Distro OTX version.3.8 protocol 10.98

    I have custom vocations on my server, I'm having a problem with shared. how can i change this piece of code to instead of just taking the previous vocation it search for the base vocation? party.cpp void Party::updateVocationsList() { std::set<uint32_t> vocationIds; uint32_t...
  3. J

    Map Track + Tibia Time Machine

    Saved guys, I would like to know if there is any method to copy a map from a recording in Tibia Time Machine, specifically in version 9.81
  4. J

    Is it really possible to compile OTX 4, 5 or 6 on ubuntu linux?

    Is it really possible to compile OTX 4, 5 or 6 on ubuntu linux? I've tried in several ways and I always get errors, there are no tutorials for compilation for linux, only for windows.
  5. J

    OTX to 10.98

    good morning guys, I'm trying to compile OTX to version 10.98, I've already changed CLIENT_VERSION_STR in definitions.h and I've already changed it in config.lua, I've also changed CLIENT_VERSION_ in items.cpp, but my client has a badge when logging in. Am I making mistakes or forgetting to do...
Back
Top