User Tools

Site Tools


servers:windows:games:trinitycore_3.3.5_localhost

Information

  • TrinityCore 1)
  • 3.3.5 2)
  • These notes provide a local singleplayer server for World of Warcraft 3.3.5 on Windows (see these notes for Linux)

Prerequisites

Resources

Dependencies

  • 2024/07/24: Git, Visual Studio 2022, MySQL, Boost, CMake, OpenSSL
  • :!: Any SETX usage needs a Windows user re-sign in
  • SQLyog for GUI database management
  • :!: MariaDB is untested 3)

Git

  • Git from the command line and also from 3rd-party software

Visual Studio 2022

  • :!: Install needs Modified after the auto-install
  • Desktop development with C++
  • Any components that doesn't remove Desktop dev C++ is optional (Pilot, Sanitizers, Live, etc)

MySQL

  • Server Only
  • Development Computer
  • :!: Uncheck Open Windows Firewall ports for network access
SETX /M path "%path%;%ProgramFiles%\MySQL\MySQL Server 8.0\bin"

SQLyog Community Edition

Boost

SETX /M "BOOST_ROOT" "C:/local/boost_1_86_0"

CMake

OpenSSL

  • :!: Copy OpenSSL DLLs to: The OpenSSL binaries (/bin) directory

Download Source

git clone --branch "3.3.5" --depth "1" --recurse-submodules "https://github.com/TrinityCore/TrinityCore.git" "%UserProfile%\Projects\trinity-335\src"
explorer "%UserProfile%\Projects\trinity-335\src"

Databases

  • All Database management including backups/restores are done through SQLyog

Create DBs

  • Ctrl + D or Database → Create Database
  • Database charset: utf8mb4
  • Database collation: utf8mb4_unicode_ci
authserver
characters
worldserver

DB Users

  • Ctrl + U or Tools → User Manager
  • All Host as 127.0.0.1
  • Click the database with the same name as username and Select All privileges
authserver
characters
worldserver

Initial Compile

CMake

  • Visual Studio 17 2022
MKDIR "%UserProfile%\Projects\trinity-335\build\bin\Release\"
cmake-gui
"%UserProfile%\Projects\trinity-335\src"
"%UserProfile%\Projects\trinity-335\build"

Visual Studio

  • Build → Configuration Manager → Active solution configuration: Release
  • Build → Rebuild Solution

DLLs

COPY /Y "%ProgramFiles%\MySQL\MySQL Server 8.0\lib\libmysql.dll" "%UserProfile%\Projects\trinity-335\build\bin\Release\"
COPY /Y "%ProgramFiles%\OpenSSL-Win64\bin\legacy.dll" "%UserProfile%\Projects\trinity-335\build\bin\Release\"
COPY /Y "%ProgramFiles%\OpenSSL-Win64\bin\libssl-3-x64.dll" "%UserProfile%\Projects\trinity-335\build\bin\Release\"
COPY /Y "%ProgramFiles%\OpenSSL-Win64\bin\libcrypto-3-x64.dll" "%UserProfile%\Projects\trinity-335\build\bin\Release\"

Update

git -C "%UserProfile%\Projects\trinity-335\src" reset --hard && git -C "%UserProfile%\Projects\trinity-335\src" pull origin "3.3.5" --rebase
cmake-gui
  • Visual Studio → Build → Build Solution

Content

  • Move mapextractor mmaps_generator vmap4assembler and vmap4extractor to the WoW folder or use COPY commands below
explorer "%UserProfile%\Projects\trinity-335\build\bin\Release"
explorer "%ProgramFiles(x86)%\World of Warcraft 3.3.5"

DBCs, Maps, and Cameras

COPY /Y "%UserProfile%\Projects\trinity-335\build\bin\Release\mapextractor.exe" "%ProgramFiles(x86)%\World of Warcraft 3.3.5"
CD "%ProgramFiles(x86)%\World of Warcraft 3.3.5" && "mapextractor.exe" -f "0"

VMaps

Extract

COPY /Y "%UserProfile%\Projects\trinity-335\build\bin\Release\vmap4extractor.exe" "%ProgramFiles(x86)%\World of Warcraft 3.3.5"
CD "%ProgramFiles(x86)%\World of Warcraft 3.3.5" && "vmap4extractor.exe" -l

Assemble

COPY /Y "%UserProfile%\Projects\trinity-335\build\bin\Release\vmap4assembler.exe" "%ProgramFiles(x86)%\World of Warcraft 3.3.5"
CD "%ProgramFiles(x86)%\World of Warcraft 3.3.5" && "vmap4assembler.exe" "Buildings" "vmaps"

MMaps

COPY /Y "%UserProfile%\Projects\trinity-335\build\bin\Release\mmaps_generator.exe" "%ProgramFiles(x86)%\World of Warcraft 3.3.5"
CD "%ProgramFiles(x86)%\World of Warcraft 3.3.5" && "mmaps_generator.exe" --bigBaseUnit "true" --threads "4"

Move Files

  • Move Cameras dbc maps mmaps and vmaps folders to the Release folder
explorer "%UserProfile%\Projects\trinity-335\build\bin\Release" && explorer "%ProgramFiles(x86)%\World of Warcraft 3.3.5"

Clean-up

  • Remove Buildings and extractor .exes
explorer "%ProgramFiles(x86)%\World of Warcraft 3.3.5"

World Database

TDB

  • Extract TDB_full_world_335.sql to Release folder
explorer "%UserProfile%\Projects\trinity-335\build\bin\Release"

Settings

authserver

COPY /Y "%UserProfile%\Projects\trinity-335\build\bin\Release\authserver.conf.dist" "%UserProfile%\Projects\trinity-335\build\bin\Release\authserver.conf"
notepad "%UserProfile%\Projects\trinity-335\build\bin\Release\authserver.conf"
LoginDatabaseInfo = "127.0.0.1;3306;authserver;x;authserver"
Updates.EnableDatabases = 1

worldserver

COPY /Y "%UserProfile%\Projects\trinity-335\build\bin\Release\worldserver.conf.dist" "%UserProfile%\Projects\trinity-335\build\bin\Release\worldserver.conf"
notepad "%UserProfile%\Projects\trinity-335\build\bin\Release\worldserver.conf"
LoginDatabaseInfo     = "127.0.0.1;3306;authserver;x;authserver"
WorldDatabaseInfo     = "127.0.0.1;3306;worldserver;x;worldserver"
CharacterDatabaseInfo = "127.0.0.1;3306;characters;x;characters"
Quests.LowLevelHideDiff = -1
Quests.HighLevelHideDiff = -1
Motd = "Welcome to your localhost server!"
Server.LoginInfo = 1

Realm

authserver

  • authserver needs started at least once to create the tables and to start worldserver for account creation
  • Ctrl + C to exit
CD "%UserProfile%\Projects\trinity-335\build\bin\Release" && "authserver.exe"

Create GM Account

  • Change x to password
CD "%UserProfile%\Projects\trinity-335\build\bin\Release" && "worldserver.exe"
account create Espionage724 x
account set gmlevel Espionage724 3 -1
server shutdown 1

Launch

Commands

CD "%UserProfile%\Projects\trinity-335\build\bin\Release" && "authserver.exe"
CD "%UserProfile%\Projects\trinity-335\build\bin\Release" && "worldserver.exe"
/var/www/wiki/data/pages/servers/windows/games/trinitycore_3.3.5_localhost.txt · Last modified: 2024/09/17 13:20 by 127.0.0.1