DOL Server is a server emulator for the game Dark Age of Camelot written by the Dawn of Light community
It does the following:
Provides the network communication needed to allow a DAOC game client to connect to the server
Provides a database layer between the server and MySQL~SQLite to allow storage of characters, npcs, items and so on
Provides a persistent world framework for customisation of game rulesets and behaviours
Latest Release : https://github.com/Dawn-of-Light/DOLSharp/releases/latest
Clone Git Repository to a working Directory.
Restore Nuget Package : https://docs.nuget.org/consume/nuget-faq
This will download dependencies from nuget repository instead of using embedded binaries.
Then Build the project. (use Debug Target if you intend to contribute or write your own scripts...)
The debug folder should be your working directory from now on, you should focus on populating a database to build your server and rely on source files to find constants values used in database records...
You should use an IDE to track default behaviors and reach code parts where constants are used, handling breakpoint with a debugger can be a life savior in understanding how some game rules are enforced with legacy code.
- Homepage: http://www.dolserver.net
- Getting Started: Official Forum
- Coding: Wiki Home