NovusCore is an MMO Engine.
Currently Novus is developing a game/server solution where our main focus is to be feature complete with the most popular MMOs out there. Long term, we hope to support many more features.
The project was made with the promise that we would always focus on reliability, redundancy, and performance over convenience. We achieve this through making use of experience, but also applying modern techniques and design patterns.
The end-goal is to provide a game/server setup, capable of tackling all of the limitations set by the current standard. Solving those issues are complicated, but we start by applying a proper foundation for our architecture to allow for better flow of information(data) and performance.
The project has an official Discord. You will find the developers to be active on the discord and always up for answering any questions you might have regarding the project. Despite Novus not currently being ready for production level use, we are always welcoming any users that want to try using it.
Here we include a honorable mention to all the libraries included directly into the source of Novus. You do not need to download these on your own, but we felt it was important to address these as without them, Novus would be a lot more time consuming to develop.
Tip
It's recommended to fork, clone, and build Engine first.
- Download the dependencies.
- Fork and clone the repositry
- Open the project folder and open a terminal within the project's directory.
- Use the command
premake5 vs2022
Note
You can change the files generated by using a different action than vs2022
.
- Open the new
Build
folder and double click theAssetConverter.sln
file. - Set the build configuration to
Release
.
Warning
Make sure you set the build configuration to release. If you build this in debug, you exponentially increase asset extraction and conversion time.
- Use
ctrl
+shift
+b
to build the solution or right click the solution and selectBuild Solution
- The solution builds to
../Build/Bin/AssetConverter/[BuildConfig]
- Download the
community-listfile.csv
from here and rename it tolistfile
. - Go to your
../World of Warcraft/_classic"
folder and copy thelistfile.csv
,AssetConverterConfig.json
, and theAssetConverter.exe
to this folder.
Tip
The AssetConverterConfig.json
is located in the [root]/Resources
folder.
- Run the
AssetConverter.exe
. This process may take up to 5 minutes, but varies from setup to setup. - When the Asset Converter is finished, a new folder called
Data
will be generated. This folder will be used by the Game and will be discused in that project's README.