Root project for Duskhaven's branch of TSWoW
  • C 45%
  • C++ 24.3%
  • TypeScript 22.4%
  • Lua 3.2%
  • Shell 1.5%
  • Other 3.4%
Find a file
2026-05-11 12:50:28 -04:00
.github ci: sudo 2024-09-09 12:19:27 +02:00
.vscode chore: added some configuration files 2024-04-14 07:43:23 +02:00
cores update scalars, fix tooltip stuff, expand variables 2026-05-11 12:50:28 -04:00
misc update scalars, fix tooltip stuff, expand variables 2026-05-11 12:50:28 -04:00
tswow-core guid as uint64 2026-04-26 08:57:12 -04:00
tswow-scripts update scalars, fix tooltip stuff, expand variables 2026-05-11 12:50:28 -04:00
.clang-format chore: added some configuration files 2024-04-14 07:43:23 +02:00
.clang-tidy chore: added some configuration files 2024-04-14 07:43:23 +02:00
.cmake-format chore: added some configuration files 2024-04-14 07:43:23 +02:00
.editorconfig chore: added some configuration files 2024-04-14 07:43:23 +02:00
.gitignore Veggie didn't say please 2026-05-09 00:25:32 -04:00
.gitmodules Partial restruct 2026-02-07 21:22:48 +01:00
build.default.conf test 2024-12-31 01:36:42 -08:00
build.js package changes for cli; spell tooltip fixes and item tooltip implementation; add some bunny handlers; add adt scanning; temp WMO logging extension for local testing 2026-04-05 10:36:22 -04:00
LICENSE datascripts: fix wotlk compiler errors 2022-02-11 18:36:32 +01:00
package-lock.json package changes for cli; spell tooltip fixes and item tooltip implementation; add some bunny handlers; add adt scanning; temp WMO logging extension for local testing 2026-04-05 10:36:22 -04:00
package.json doin tricks on it; new build command 2026-04-28 19:05:10 -04:00
README.md Update README.md 2024-07-10 13:51:42 -04:00

TSWoW - Duskhaven Edition

Duskhaven is built utilizing the modding framework from TSWoW (TypeScript WoW) this repository is a fork of that project with duskhaven specific changes. All credits for the modding framework go to TSWoW.

Any other TSWoW projects are welcome to cherry pick our changes from this.

TSWoW (TypeScript WoW) is a free modding framework, mod loader and integrated development environment for the World of Warcraft: Wrath of the Lich King (WotLK) expansion build around the TrinityCore emulator.

With TSWoW, you use the TypeScript programming language and the VSCodium editor to easily modify the World of Warcraft game data and to script the behavior of the server.

Who is TSWoW for?

  • Modding Beginners - We have crash course aimed just at getting new people started!

  • Modding Veterans - TSWoW is primarily aimed at making modding more efficient and powerful. You will very fast realize the power of improving your workflow using programming.

TSWoW is a programming environment, and the language we use is TypeScript. This is among the easier languages to learn, and is very similar to Java, C#, JavaScript, Python etc. If you know any of those, you can probably learn TSWoW by just following the crash course. However, if any of the following is foreign to you then you might want to review them before you get started:

  • Integrated development environment (IDE)
  • JSON
  • Functions, objects, classes, methods
  • Callback functions / Delegates
  • Command-line interface

Introduction & Installation

Issues

Discord


The purpose of this document is to walk through building the Duskhaven fork of TS-WoW with TrinityCore from source as well as link to relevant upstream documentation.

Credits to Project Epoch for utilizing their instruction installations and modifying to be Duskhaven specific.

Important Notes

  • Please make sure there are no spaces anywhere in the pathname to your WoW client or the TSWoW installation.

Pre-Requisites

Build Stage Directory / File Setup

It is recommended to keep your Client alongside your source build due to a Windows limitation with symlinking required for TS-WoW to function.

  • Create a directory in a location of your choosing named DuskhavenSource.
  • Within DuskhavenSource create the following subdirectories:
    • build
    • client (Paste the contents of your 3.3.5a enUS / enGB client within)
    • release
  • Using a terminal of your choosing such as PowerShell or Git Bash reach your DuskhavenSource directory.
  • git clone https://github.com/duskhaven-reforged/dusk-tswow.git --recurse source
  • Wait for clone to complete, you should have a final source directory alongside your other 3 build, client, release folders.
  • Copy source/build.default.conf to source/build.conf and open it. Here you can configure where tswow should place build and install directories.
  • Set the following within source/build.conf
BuildDirectory = "../build"
InstallDirectory = "../release"
  • Using a terminal of your choosing such as PowerShell or Git Bash reach your DuskhavenSource/source directory.
  • Run the command npm i

Building Stage - Compiling (First Time)

  • When compiling it is recommended that you have closed your world and auth servers, if this is your first build this is irrelevant.
  • Using a terminal of your choosing such as PowerShell or Git Bash reach your DuskhavenSource/source directory.
  • For a first setup we strongly recommend a full build which will get any further dependencies and compile every part of TS-WoW. From this point you can later more strategically compile only certain aspects.
  • Run npm run build full
  • This may take a long time to complete.
  • Once this completes your DuskhavenSource/release directory should now be populated.

Building Stage - Server Core

  • To rebuild only the core ensure that you have closed any running framework instances or world / auth servers.
  • Run npm run build trinitycore-relwithdebinfo.
  • Once complete run npm run start within your DuskhavenSource/release directory.

Final Setup

  • Within DuskhavenSource/release open node.conf and set Default.Client to your WoW client path. This should be in the DuskhavenSource/client directory.
  • Using a terminal of your choosing such as PowerShell or Git Bash reach your DuskhavenSource/release directory.
  • Run the command npm run start. This will start the automatic installation and then start the server. Wait for the core database installation and maps to be extracted. This is a long process on the first installation and can take a long time depending on your machine. 20-30 minutes isnt rare. You know the installation is done when you see a message similar to
TrinityCore rev. 2a67a101096e 2021-04-23 09:24:53 +0200 (tswow branch) (Win64, RelWithDebInfo, Dynamic) (worldserver-daemon) ready...
  • To create a gm account, type create account myuser mypassword 3
  • You can now start the client with the command start client and log in to the game

Known Issues

For common issues when installing please refer to upstream TS-WoW Documentation.