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!

Runuo asking for path to UO everytime you open it?

Tumeski

Sorceror
Runuo asking for path to UO everytime you open it?

Open scripts/misc/DataPath.cs

Around line 16:

Code:
private static string CustomPath = null;

Replace "null" with the path to your UO directroy, so it should look something like this:

Code:
private static string CustomPath = @"C:\Program Files\EA_Games\Ultima_Online";

As you can see we added "@" there and then the path to your uo directory. Your path may be different than mine.

Save it and run your server. Now it doesnt ask for the path anymore.

Thank you.
 

Tumeski

Sorceror
As for Linux enviroment RunUO

the custom Datapath line should be something like this:

Code:
private static string CustomPath = @"/home/avion/maps";
 

eric kent

Wanderer
Runuo asking for path to UO everytime you open it?

Open scripts/misc/DataPath.cs

Around line 16:

Code:
private static string CustomPath = null;

Replace "null" with the path to your UO directroy, so it should look something like this:

Code:
private static string CustomPath = @"C:\Program Files\EA_Games\Ultima_Online";

As you can see we added "@" there and then the path to your uo directory. Your path may be different than mine.

Save it and run your server. Now it doesnt ask for the path anymore.

Thank you.
Thank you for the link got it to work
 

cjvancleave

Sorceror
ok i have tried this and still nothing i am having problems also with uo itself i think my razar is also giving a weird error says it cant find uo so do i have to patch fully from orgins first? pls let me know
 
Top