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!

Serialization Fix for Linux

RavonTUS

Sorceror
Serialization Fix for Linux

Greetings,

Here is my latest working (atleast for me) version of Serialization.cs and other associated files. I tested with SVN 257. I can now load my .net SAVE folder with it.

If you want to see the changes just look for the IF !MONO statements.

Note: Scripts/Accounting/Accounts.cs - fixes the [ADMIN gump issue.

-Ravon
 

Attachments

  • kubuntuLinux-15SEP2007.zip
    19.1 KB · Views: 75

Antidoto

Sorceror
antidoto@antidoto-desktop:~$ cd Desktop
antidoto@antidoto-desktop:~/Desktop$ cd RunUO2
antidoto@antidoto-desktop:~/Desktop/RunUO2$ gmcs -d:MONO -unsafe+ -optimize- -t:exe -out:RunUO.exe -recurse:Server/*.cs
Server/Main.cs(451,16): warning CS0219: The variable `ms' is assigned but its value is never used
Server/Map.cs(1797,12): warning CS0219: The variable `start' is assigned but its value is never used
Server/Mobile.cs(8728,11): warning CS0219: The variable `oldRegion' is assigned but its value is never used
Server/MultiData.cs(108,12): warning CS0219: The variable `extra' is assigned but its value is never used
Server/Utility.cs(328,10): error CS0117: `System.Net.Sockets.Socket' does not contain a definition for `OSSupportsIPv6'
Server/Utility.cs(506,4): error CS0117: `System.TimeSpan' does not contain a definition for `TryParse'
Server/Utility.cs(508,11): error CS0165: Use of unassigned local variable `t'
Server/Utility.cs(554,9): error CS0117: `System.DateTime' does not contain a definition for `TryParse'
Server/Utility.cs(555,13): error CS0165: Use of unassigned local variable `d'
Compilation failed: 5 error(s), 4 warnings
antidoto@antidoto-desktop:~/Desktop/RunUO2$

What's the metter?
I have Ubuntu 7.04..
thanks..
 

RavonTUS

Sorceror
Antidoto;716775 said:
What's the metter?
I have Ubuntu 7.04..
thanks..

Try...
Code:
gmcs -out:../runuo.exe -d:MONO -optimize+ -unsafe -r:System,System.Configuration.Install,System.Data, System.Drawing,System.EnterpriseServices,System.Management, System.Security,System.ServiceProcess,System.Web, System.Web.Services,System.Windows.Forms,System.Xml -nowarn:219 -recurse:*.cs

-Ravon
 
Top