Highly Performant & Scalable Ultima Online Server Emulator https://www.modernuo.com
Find a file
2019-03-12 23:41:19 -07:00
Data Add DefaultName property to Mobiles & Items (#18) 2018-08-09 17:18:41 -07:00
Scripts Fixes several bugs and streamlines the BOD code. (#32) 2019-03-12 23:41:19 -07:00
Server Fixes several bugs and streamlines the BOD code. (#32) 2019-03-12 23:41:19 -07:00
.editorconfig Clean up: Bugs, LINQ, constructors, default values, and null checks (#18) 2019-03-11 14:29:59 -07:00
.gitignore Updates .gitignore and adds more info to README.md 2018-08-18 19:56:38 +08:00
.travis.yml Create .travis.yml 2015-07-20 20:22:26 -07:00
GOALS.md Updates GOALS.md 2019-03-05 16:00:06 -08:00
LICENSE Initial commit 2013-09-07 19:05:34 -07:00
rdrand.so Adds IntelHW RDRand for Mac/Linux. 2018-08-09 00:06:23 -07:00
rdrand32.dll Adds RDRand 1.0.1 and ZLib 1.2.11 2018-02-11 16:35:59 -08:00
rdrand64.dll Adds RDRand 1.0.1 and ZLib 1.2.11 2018-02-11 16:35:59 -08:00
README.md Clean up: Bugs, LINQ, constructors, default values, and null checks (#18) 2019-03-11 14:29:59 -07:00
RunUO.sln + Optimize output targets. 2018-08-01 22:03:47 +01:00
RunUO.vshost.exe.manifest + RunUO 2.7 with initial TOL expansion support. 2016-01-27 02:59:11 +00:00
zlib32.dll + Include zlib. 2018-08-01 21:07:37 +01:00
zlib64.dll + Include zlib. 2018-08-01 21:07:37 +01:00

ModernUO

Contacts

Join Discord Channel

Goals

Requirements

  • Build Server project
    • Building with Visual Studio for Windows will install DotNetCompilerPlatform automatically.

Building for Windows (Without Visual Studio)

C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc /optimize /unsafe /t:exe /out:RunUO.exe /win32icon:Server\runuo.ico /d:NEWTIMERS /recurse:Server\\*.cs

  • DotNetCompilerPlatform must be installed with the csc.exe file in the roslyn folder at the root of the repository.

Building for Mac/Linux (Without Visual Studio)

mcs -optimize+ -unsafe -t:exe -out:RunUO.exe -win32icon:Server/runuo.ico -nowarn:219,414 -d:NEWTIMERS -d:MONO -recurse:"Server/*".cs

Running on Mac/Linux (MONO)

mono RunUO.exe

Troubleshooting / FAQ

Scripts fail to compile on Windows

This is usually caused nuget packages not being installed. Install the required packages and rebuild the Server project. Note: The required nuget packages can be set to automatically restore on build with this setting