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

[8.0] [TFS 1.2] - Server Global Full [Real Map]

sorry, but couldn't find... where's the github?

btw. does anyone know if thats the best 8.0 server I can find for free?

Yo !
 
i think so. i will test it today and i come comeback with some feedback.
 
Thanks... sorry, but maybe I'm stupid :P But how to open map from this client in remeres? I see no .otbm file, dunno how to do it >.<
 
Okay, I've managed to find it :D Does anyone know, if this will be compatibile with OTclient? If yes, is there anything important to do, before I start mapping?

... aaaand, when I'm opening the .otbm file, found in data/world, everything seems fine - its loading quite a while, but then all I see is black screen and someones nickname mapped on it >.>

could anyone help? I just want to start mapppppinnn :P
 
Ok, will try asking again: any chance there's a guide somewhere, how to run this server basing on those files? I mean just the local testserver. I can do it with others tfs, but not this one :-(
 
Ok, will try asking again: any chance there's a guide somewhere, how to run this server basing on those files? I mean just the local testserver. I can do it with others tfs, but not this one :-(
 
homer brain GIF
I suppose there's no video tutorial step by step? I'm looking on all those things and I understand nothing, I'm just too silly with computers xd
Post automatically merged:

OK GUYS, FORGOT ABOUT THIS MAP. IT'S FULL OF SHHHT LIKE THIS : 1762973497011.webp
Post automatically merged:

XD 1762973544140.webp
 
Last edited:
Which Visual Studio should I use to compile? 2019 or 2017?
bro, have you seen my post? Are you aware, that AT LEAST this map is a scam full of hidden items, and I could only guess that this server is a scam aswell, full oh hidden commands

as long as you just want to play it locally with yourself or friends :P
 
Which Visual Studio should I use to compile? 2019 or 2017?
2015 and 2017
Post automatically merged:

bro, have you seen my post? Are you aware, that AT LEAST this map is a scam full of hidden items, and I could only guess that this server is a scam aswell, full oh hidden commands

as long as you just want to play it locally with yourself or friends :P
Just change the map for another one : [8.0][TFS 1.x] Realera - Real Map (https://otland.net/threads/8-0-tfs-1-x-realera-real-map.249384/)
 
For anyone wondering about compatibility:
I managed to compile this old 8.0 / TFS 1.x base using the latest Visual Studio releases — both VS 2022 and VS 2026.

I updated the project from toolset v140 to v143, modernized a few structures to match newer Boost/OpenSSL APIs, and added a proper vcpkg.json so all dependencies are downloaded automatically.
After these changes, the entire source builds normally on both Visual Studio versions without errors.1762993983569.webp1762994000397.webp

If you want, you can also take a look at my commit with all the changes needed to compile it on VS 2022 and 2026 – it’s fully working:
Upgraded the build toolset from v140 to v143, modernized several stru… · Mateuzkl/RealMap-Global-8.0-TFS-1.2@3c723de (https://github.com/Mateuzkl/RealMap-Global-8.0-TFS-1.2/commit/3c723dec7f204edfdae874acc8fea24fc4631f75)
 
@Mateus Robeerto hey, can you add here tutorial how to add extended opcodes to this tfs 1.2?

I have also error with VS 2022.
1763102474628.webp
Post automatically merged:

Here is also error from ubuntu.
1763103377932.webp
Post automatically merged:

If you wanna fix it in easy way open rsa.h and replace this with this code.

LUA:
/**
 * The Forgotten Server - a free and open-source MMORPG server emulator
 * Copyright (C) 2016  Mark Samman <[email protected]>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef FS_RSA_H_C4E277DA8E884B578DDBF0566F504E91
#define FS_RSA_H_C4E277DA8E884B578DDBF0566F504E91

#include <gmp.h>

class RSA
{
    public:
        RSA();
        ~RSA();

        // non-copyable
        RSA(const RSA&) = delete;
        RSA& operator=(const RSA&) = delete;

        void setKey(const char* pString, const char* qString);
        void decrypt(char* msg) const;

    private:
        //use only GMP
        mpz_t n, d;
};

#endif
Post automatically merged:

After this changes, next error in console.
1763103635867.webp
 
Last edited:
Back
Top