GitHub - Brunowots/RealMap-Global-8.0-TFS-1.2 (https://github.com/Brunowots/RealMap-Global-8.0-TFS-1.2)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 !
where compilation for ubuntu pass / pass
compile ubuntuwhere compilation for ubuntu pass / pass
It is compiled with Visual Studio 2015, not 2019.This can't be compiled, there are still errors (I tested it on Visual Studio 2019)
in visual studio 2015 "The build tools for v142 cannot be found. Install v142 to build using the v142 build tools."It is compiled with Visual Studio 2015, not 2019.
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 :-(
Basically your error occurs because you oppened the project with visual studio 2017 and now you need to retarget to the right libraries or simply download the sources from github again ,and open using visual studio 2015 , if you open with visual studio 2017 the same issue will happen again.If you don't want to re-download ,right click on project/properties and change plataform toolset to visual studio 2015 (v140) .
Post automatically merged:
For those who want to compile but are not having success I hope this helps, in fact it is very easy , just follow what is written and you will have no problems...


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 commandsWhich Visual Studio should I use to compile? 2019 or 2017?
2015 and 2017Which Visual Studio should I use to compile? 2019 or 2017?
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/)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![]()




/**
* 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
