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

new vc12 project

Radseq

New Member
Joined
Sep 7, 2014
Messages
13
Reaction score
1
Hello everyone i just made vc projekt like tfs
register_OtClientSdk_env.bat
copy to otclient-msvc13-libs and run it
register_boost_env.bat copy to directory where you have folder boost_1_57_0 and run it
if you want debug
go to tools->options->debugging->symbols
and check Microsoft symbol servers
then go to vc12 directory edit settings.props by notepad and replace this lines:
HTML:
   <OTCLIENT_LIBDEPS_D>
        glew32_d.lib;
        zlib1_d.lib;
        libeay32MD_d.lib;
        physfs_d.lib;
        openal32_d.lib;
        lua51_d.lib;
        libogg_static_d.lib;
        libvorbisfile_static_d.lib;
        libvorbis_static_d.lib;
        opengl32_d.lib;
        dbghelp_d.lib;
        kernel32_d.lib;
        user32_d.lib;
        shell32_d.lib;
        gdi32_d.lib;
        advapi32_d.lib;
    </OTCLIENT_LIBDEPS_D>
to this:
HTML:
    <OTCLIENT_LIBDEPS_D>
        glew32.lib;
        zlib1.lib;
        libeay32MD.lib;
        physfs.lib;
        openal32.lib;
        lua51.lib;
        libogg_static.lib;
        libvorbisfile_static.lib;
        libvorbis_static.lib;
        opengl32.lib;
        dbghelp.lib;
        kernel32.lib;
        user32.lib;
        shell32.lib;
        gdi32.lib;
        advapi32.lib;
    </OTCLIENT_LIBDEPS_D>
restart project,
and select Debug in visual studio, give somewhere breakpoint.
Run by green arrow.
important info in note.txt file

Download here: http://speedy*****malware.localhost/2fW6C/vc12.rar
 
Last edited:
do not forget to edit
Code:
#include <al.h>
#include <alc.h>
to:
Code:
#include <AL/al.h>
#include <AL/alc.h>
in
\src\framework\sound\declarations.h line 30/31

Some errors guys?
 

Similar threads

Replies
8
Views
543
Back
Top