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

TFS 1.X+ upgraded from 8.0 to 8.1 ninja

elkingahmed

New Member
Joined
May 31, 2012
Messages
116
Reaction score
2
i've successfully upgraded ninja 8.0 tfs to 8.1 and i had to upgrade my map version from RME from 7.4 to 8.1
the ot started with no debugs but there are some locations when i try to get closer to some some objects the client debugs
----
changes i did in the source --->
definitions
Code:
#define CLIENT_VERSION_MIN 810
#define CLIENT_VERSION_MAX 810
#define CLIENT_VERSION_STR "8.10"

items.cpp
Code:
    } else if (Items::dwMinorVersion < CLIENT_VERSION_810) {
        std::cout << "A newer version of items.otb is required." << std::endl;
        return ERROR_INVALID_FORMAT;
    }
changed the version to 810 instead of 800 in all of them
-----
this is ninja's source link
ninjalulz/forgottenserver
 
i've successfully upgraded ninja 8.0 tfs to 8.1 and i had to upgrade my map version from RME from 7.4 to 8.1
the ot started with no debugs but there are some locations when i try to get closer to some some objects the client debugs
----
changes i did in the source --->
definitions
Code:
#define CLIENT_VERSION_MIN 810
#define CLIENT_VERSION_MAX 810
#define CLIENT_VERSION_STR "8.10"

items.cpp
Code:
    } else if (Items::dwMinorVersion < CLIENT_VERSION_810) {
        std::cout << "A newer version of items.otb is required." << std::endl;
        return ERROR_INVALID_FORMAT;
    }
changed the version to 810 instead of 800 in all of them
-----
this is ninja's source link
ninjalulz/forgottenserver
Dos You ultraderecha the spr\\ dar files?? I mean the original 8.0 to 8.1? Witt object builder
 
I've copied the items.xml and .otb from my 8.1 ot, dont know anything about object builder :/
Untitled.png
 
which program did i have to use to compile this source and upgrade it from 8.0 to 8.1
i have tried dev ++ but i get errors

C++:
35 0 c:\program files (x86)\dev-cpp\mingw32\lib\gcc\mingw32\4.7.2\include\c++\chrono In file included from c:\program files (x86)\dev-cpp\mingw32\bin\../lib/gcc/mingw32/4.7.2/include/c++/chrono
26 E:\Games\Tibia\New Ot\source testing\tfs1.2 8.0\src\otpch.h from ../otpch.h
20 E:\Games\Tibia\New Ot\source testing\tfs1.2 8.0\src\actions.cpp from ../actions.cpp
32 2 c:\program files (x86)\dev-cpp\mingw32\lib\gcc\mingw32\4.7.2\include\c++\bits\c++0x_warning.h [Error] #error This file requires compiler and library support for the ISO C++ 2011 standard. This support is currently experimental, and must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
20 0 E:\Games\Tibia\New Ot\source testing\tfs1.2 8.0\src\actions.cpp In file included from ../actions.cpp
42 26 E:\Games\Tibia\New Ot\source testing\tfs1.2 8.0\src\otpch.h [Error] boost/asio.hpp: No such file or directory
compilation terminated.
29 E:\Games\Tibia\New Ot\source testing\tfs1.2 8.0\src\dev\Makefile.win recipe for target '../actions.o' failed
 
Back
Top