Hi.

I follow all steps to install my ubuntu machine with mono.

Then I run Compile.MONO.bat to make ServUO.MONO.exe

When I run mono ServUO.MONO.exe I've these errors:

ai58.tinypic.com_169p4x4.png

I try with a clean ServUO version and i've the same errors.

Anyone have any idea?

Thanks!
 
I can't help with mono :/ but reading some of the posts here about mono there are a couple which reference your errors and how they adjusted the problem :) So I would do some reading it just might help
 
Yeah other post may help me with problems but finally I get to the same end:

ServUO/RunUo/others uses kernel32 to run and this only run in windows.

ServUo needs adapt its code to MONO.
 
For the first error, just look where you have
Code:
bool usematerials;
and replace with
Code:
bool usematerial = Utility.RandomBool();

In XmlSpawnerGump replace these lines :
Code:
this.AddTextEntry(35, 275, 200, 21, 0, 1, null);
by this :
Code:
this.AddTextEntry(35, 275, 200, 21, 0, 1, (string)null);

In XMLQuestGump, replace
Code:
this.AddTextEntry(135, height - 7, 150, 21, 0, 99, null);
by this :
Code:
this.AddTextEntry(135, height - 7, 150, 21, 0, 99, (string)null);
 
Back