RunUO Community

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

How to run latest SVN RunUO on Linux - rev. 311

Sathallrin

Sorceror
How to compile/run latest SVN RunUO on Linux/Mono - rev. 313

It seems most of the tutorials out there are out of date, so I'm making a new one for the SVN which I hope to keep up to date.

Notes
I'm using:
Ubuntu 8.10
Mono 1.9.1
RunUO SVN rev. 313

System setup
Install Mono
sudo apt-get install mono-gmcs libmono-winforms2.0-cil
Install Subversion
sudo apt-get install subversion

Check out RunUO code with Subversion
Code:
svn co http://svn.runuo.com/repos/runuo/devel/ /path/to/runuo

example:
svn co http://svn.runuo.com/repos/runuo/devel/ /home/user/runuo

Compile the Server code into runuo.exe
From your RunUO folder ( /path/to/runuo ) run this command to compile the code.
gmcs -out:runuo.exe -d:MONO -optimize+ -unsafe -recurse:Server/*.cs
** You'll recieve 64 warnings when compiling but runuo.exe will be created successfully.


Running RunUO
Run RunUO with mono
mono runuo.exe
 

Mark

Knight
Thanks. I wasn't aware MONO had taken care of some of those issues.

I'll commit these changes to the repository to make it easier for others.
 

Tristenne420

Wanderer
OMG THANK YOU for this! I tried a few other methods that wouldn't work but this one hit the spot! I believe all I was doing wrong was RunUO with subversion! Thanks =))))

<3
 
Top