-
-
Notifications
You must be signed in to change notification settings - Fork 194
1. Getting Started
Welcome! π
This guide will help you get your first ModernUO server up and running quickly.
ModernUO is designed to be easy to set up and run across Windows, Linux, and macOS, using the latest .NET technologies.
Before you start, make sure you have the following installed:
https://github.com/modernuo/ModernUO/wiki/_new
Follow these simple steps to get started:
You can either:
- Clone the repository:
git clone https://github.com/modernuo/ModernUO.git
- Or download the latest version as a ZIP file: Download Latest
Open ModernUO.sln with your favorite C# IDE, such as:
- Visual Studio 2026+
- JetBrains Rider 2025.3+
- VS Code (with C# extensions)
You're now ready to start developing and customizing your shard!
To publish a ready-to-run server build, run:
./publish.cmd [release|debug (default: release)] [os] [arch (default: x64)]-
release|debug: Choose build type (default is
debug) -
os: Target operating system
-
winβ Windows 10/11/Server 2016/2019/2022/2025 -
osxβ macOS 14/15/26 (Sonoma, Sequoia, Tahoe) -
linuxβ Linux distributions
-
-
arch: Target architecture
-
x64β Intel/AMD 64-bit -
arm64β ARM 64-bit (Note: Windows ARM64 not supported)
-
This will create a Distribution directory containing the server binaries.
Make sure the following libraries are installed before running ModernUO:
sudo dnf upgrade --refresh -y
sudo dnf install -y epel-release epel-next-release
sudo dnf install -y findutils libicu libdeflate-devel zstd libargon2-develsudo apt-get update -y
sudo apt-get install -y libicu-dev libdeflate-dev zstd libargon2-devUse Homebrew to install the required libraries:
brew install icu4c libdeflate zstd argon2After publishing, running the server is simple:
- Navigate to the
Distributionfolder - Run the server with:
β or β
./ModernUO.exe
dotnet ModernUO.dll
You're now officially running ModernUO! π
π Once your server is running, head over to Configuration to learn how to customize and fine-tune your server settings!
Copyright Β© 2017-2025 Kamron Batman & ModernUO Dev Team, released under GPL 3.0