- C 45%
- C++ 24.3%
- TypeScript 22.4%
- Lua 3.2%
- Shell 1.5%
- Other 3.4%
| .github | ||
| .vscode | ||
| cores | ||
| misc | ||
| tswow-core | ||
| tswow-scripts | ||
| .clang-format | ||
| .clang-tidy | ||
| .cmake-format | ||
| .editorconfig | ||
| .gitignore | ||
| .gitmodules | ||
| build.default.conf | ||
| build.js | ||
| LICENSE | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
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
Links for getting started
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
- Git
- Node.js (exactly version 18.12.1)
- VC Redist Latest x86
- VC Redist Latest x64
- VC Redist 2013 x86
- VC Redist 2013 x64
- Visual Studio Code
- Visual Studio 2022 Community
- Python 3.11.4(dont get 3.12, they took out distutils)
- World of Warcraft 3.3.5a Client
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
DuskhavenSourcecreate the following subdirectories:buildclient(Paste the contents of your 3.3.5a enUS / enGB client within)release
- Using a terminal of your choosing such as
PowerShellorGit Bashreach yourDuskhavenSourcedirectory. git clone https://github.com/duskhaven-reforged/dusk-tswow.git --recurse source- Wait for clone to complete, you should have a final
sourcedirectory alongside your other 3build,client,releasefolders. - Copy
source/build.default.conftosource/build.confand 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
PowerShellorGit Bashreach yourDuskhavenSource/sourcedirectory. - 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
PowerShellorGit Bashreach yourDuskhavenSource/sourcedirectory. - 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/releasedirectory 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 startwithin yourDuskhavenSource/releasedirectory.
Final Setup
- Within
DuskhavenSource/releaseopennode.confand setDefault.Clientto your WoW client path. This should be in theDuskhavenSource/clientdirectory. - Using a terminal of your choosing such as
PowerShellorGit Bashreach yourDuskhavenSource/releasedirectory. - 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 isn’t 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 clientand log in to the game
Known Issues
For common issues when installing please refer to upstream TS-WoW Documentation.