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!

RunUO2.3r987

gunkar

Sorceror
When i downloaded from google rep, and run it out of the box(.rar :p) it gives me alot of errors.
Thats why i asked if someone tried it and got a success full compile of scripts.

I tried running RunUO-Framework2 and RunUO-Framework4.
 

Foul

Page
You have to compile it yourself under Linux. Those won't work.



try this; (DEBIAN/UBUNTU)

for getting the latest SVN (if you want R1057)
Code:
sudo apt-get install nano mono-complete subversion
svn checkout http://runuo.googlecode.com/svn/devel/ runuo-read-only
mv runuo-read-only RunUO
cd RunUO


How to compile;; (MAKE SURE THE COMPILE FILE IS IN THE RUNUO ROOT DIRECTORY)

Make a new file called compile;
Code:
nano compile

with these contents
Code:
gmcs -optimize -unsafe -d:MONO -out:RunUO.exe -nowarn:0219,0414,0618 -win32icon:Server/runuo.ico -recurse:Server/*.cs
 
echo "<configuration>" >> RunUO.exe.config
echo "    <dllmap dll=\"libz\" target=\"libz.so.1.2.3.4\"/>" >> RunUO.exe.config
echo "</configuration>" >> RunUO.exe.config

Save the file with Ctrl+O and then CTRL+X out.

Run
Code:
sudo chmod +x compile

Extra step..OCD remove any other exe files.
Code:
sudo rm -r *.exe

then run
Code:
./compile

You'll get two errors, those are normal.


Run the server with
Code:
mono RunUO.exe
 

gunkar

Sorceror
Ok the svn is not that but i already try that with one exception.

svn checkout http://runuo.googlecode.com/svn/devel/

In this command

gmcs -optimize -unsafe -d:MONO -out:RunUO.exe -nowarn:0219,0414,0618 -win32icon:Server/runuo.ico -recurse:Server/*.cs

can you explain me the -nowarn:0219,0414,0618?

After compiled the version is showing: RunUO - [www.runuo.com] Version 2.2, Build 4847.32291

Not 2.3.....

Thanks.
 

Foul

Page
can you explain me the -nowarn:0219,0414,0618?
It hides a bunch of unnecessary errors Mono complains about while compiling. "verbose". It's not required but gives a cleaner output.

After compiled the version is showing: RunUO - [www.runuo.com] Version 2.2, Build 4847.32291

Not 2.3.....

Thanks.

Are you using SVN?.. or your rar? If it's your rar it's probably 2.2 not 2.3..

Try this for SVN;
Code:
svn checkout http://runuo.googlecode.com/svn/devel/ runuo-read-only
compile it again and.. if it doesn't show 2.3 then I'm not sure? that's weird.. it's the same list I use to deploy my server.

You should be able to compile r987 that way too. (from your rar) I like the latest SVN though.


edit:

proof I'm not pulling your leg.

disclaimer: I've been working with linux for a few years. but my terms may be off. I'm sorry if it is that way. :p
 

gunkar

Sorceror
No worries i can understand your terms and i thank you for your patience.

Well the svn i used is that one :S

I also tried with gmcs and dmcs this last one i compile with the .net 4.0 nicely but still is 2.2

Its says r1057 but when i compile its shows 2.2 i will give it another try!!

Give feedback later

Thanks
 

Foul

Page
No worries i can understand your terms and i thank you for your patience.

Well the svn i used is that one :S

I also tried with gmcs and dmcs this last one i compile with the .net 4.0 nicely but still is 2.2

Its says r1057 but when i compile its shows 2.2 i will give it another try!!

Give feedback later

Thanks

Yeahh I don't know what's going on. I didn't get 4.0 when I compiled.. so make sure your not using the existing .exes I don't even see how that could work. otherwise meh. lol
 

gunkar

Sorceror
Every time i try to compile i create a new folder and decompress the files or svn checkout them, it gives me 2.2 :(((

RunUO - [www.runuo.com] Version 2.2, Build 4848.22280 with RunUO2.3r987_Full_Src.rar


svn checkout http://runuo.googlecode.com/svn/devel/ runuo-read-only
Checked out revision 1057.

RunUO - [www.runuo.com] Version 2.2, Build 4848.19311


Don't what more to do...those mono saves any kind of cache or something?

OK OK OK

this was dificult :p the file AssemblyInfo.cs

"...[assembly: AssemblyVersion("2.2.*")]..."

It seems that this is causing my problems :p
 

Foul

Page
Every time i try to compile i create a new folder and decompress the files or svn checkout them, it gives me 2.2 :(((

RunUO - [www.runuo.com] Version 2.2, Build 4848.22280 with RunUO2.3r987_Full_Src.rar


svn checkout http://runuo.googlecode.com/svn/devel/ runuo-read-only
Checked out revision 1057.

RunUO - [www.runuo.com] Version 2.2, Build 4848.19311


Don't what more to do...those mono saves any kind of cache or something?

OK OK OK

this was dificult :p the file AssemblyInfo.cs

"...[assembly: AssemblyVersion("2.2.*")]..."

It seems that this is causing my problems :p
There you go, that is so weird though. I've never had that issue..but if it's that version then good! Glad you got it fixed.
 
Top