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

Compiling OTClient's latest source with Microsoft Visual Studio 2013.

Thanks for help. I missed one thing, I mean that message after compiling any file.cpp "Unknown compiler version - please run the configure tests and report the results"

I changed debug -> release as u said and added some libraries but now i have other error with old version (I'm using the newest version of Microsoft Visual Studio 2015, it was updated automatic)
http://prntscr.com/bli111

If you can tell me what kind of file i should change/download.
 
why file libvorbis - 1.3.3\lib in the program files ? you do not have it by chance on the drive c : \ otclient - msvc13 - libs \ libvorbis - 1.3.3 \ lib ? You extracted the library on the C: drive ?

I use mvs2013 do not know if the 2015 will not be other problems
 
Thanks for help. I missed one thing, I mean that message after compiling any file.cpp "Unknown compiler version - please run the configure tests and report the results"

I changed debug -> release as u said and added some libraries but now i have other error with old version (I'm using the newest version of Microsoft Visual Studio 2015, it was updated automatic)
http://prntscr.com/bli111

If you can tell me what kind of file i should change/download.
You can try change toolset to a previous version. I don't remember which one, but most likely the previous one from 2015 (2013 one). I can't guide you on how to do it right now either since I don't have a compiler installed on this computer. But just google "change toolset microsoft Visual studio" and you'll be set
 
Guys you are fantastic, Build succeeded // I needed to change from mvs 2015 to mvs 2013 and it works now

Thanks, Have a good night.
 
compile problem with codeblocks.
tiroyEB.jpg

Someone can help me?
 
To compile with Visual Studio 2015 you need to update Boost libraries and OGG/Vorbis.

For Boost you can download pre-built binaries here (VS2015 = msvc-14.0):
https://sourceforge.net/projects/boost/files/boost-binaries/1.62.0/

For libogg/vorbis you need to build yourself:

Download both here:
http://downloads.xiph.org/releases/ogg/libogg-1.3.2.zip
http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.5.zip

Extract both into the same folder and remove version from folder name. I.E:
C:\lib\libogg
C:\lib\libvorbis

First open and build libogg\win32\VS2010\libogg_static.sln (Note: Select the Release version, not Debug).
Then open and build libvorbis\win32\VS2010\libvorbis_static.sln (Release again).

With libogg you should not have any problem to build. If libvorbis fail to build you made some mistake organizing folders.

Now replace libraries in the otclient-msvc13-libs folder and you're done.
 
Last edited:
error
Code:
Error 11 error LNK2001: unresolved external symbol _deflate C:\otclient-master\vc12\apngloader.obj otclient
Help-me
 
Code:
Severity    Code    Description    Project    File    Line    Suppression State
Error    C1083    Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\protocolgameparse.cpp)    Sword Art Online 2D    C:\Users\Usuario\Desktop\otclient-master\src\framework\stdext\thread.h    26


any idea?

i have all files... and with cmake idnow how to use xD
 
Code:
Severity    Code    Description    Project    File    Line    Suppression State
Error    C1083    Cannot open include file: 'boost/thread/future.hpp': No such file or directory (compiling source file ..\src\client\protocolgameparse.cpp)    Sword Art Online 2D    C:\Users\Usuario\Desktop\otclient-master\src\framework\stdext\thread.h    26


any idea?

i have all files... and with cmake idnow how to use xD
You can try using the new libraries (otclient-sdk) from the updated tutorial: Compiling on Windows · edubart/otclient Wiki · GitHub
 
Back
Top