mirror of
https://github.com/modernuo/ModernUO
synced 2026-08-11 22:23:06 -04:00
### Summary * Bumps to .NET 9 with updated dependencies * Comparing a value type against null is no longer allowed * CI/CD now uses the version specified in global.json * Serialization generator updated to .NET 9 with bug fixes, fixes to turkish language, and parallelization
30 lines
906 B
Markdown
30 lines
906 B
Markdown
---
|
|
title: Starting the server
|
|
---
|
|
|
|
# Starting the server
|
|
|
|
Now that the software has been built, all you need to do is run it!
|
|
Everything is run from the _Distribution_ folder.
|
|
|
|
=== "Windows"
|
|
Using _windows terminal_, _git bash_, or _powershell_, run:
|
|
```bash
|
|
cd Distribution
|
|
ModernUO.exe
|
|
```
|
|
|
|
=== "OSX/Linux"
|
|
Using _terminal_, run:
|
|
```bash
|
|
cd Distribution
|
|
dotnet ModernUO.dll
|
|
```
|
|
|
|
=== "Game Files"
|
|
!!! Note
|
|
Game files are required to initiate a server. Upon the initial launch, you will encounter a prompt asking for the location of your game files or ClassicUO installation. ClassicUO installations should be configured to reference game files directory within settings.json file.
|
|
|
|
|
|
!!! Tip
|
|
Game files are not directly distributed in ModernUO, find the latest version to download these at [client download](https://uo.com/Client-Download/)
|