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!

Can Someone with Time Help me?!?

Ravenal

Knight
Do you have Runuo Server.exe downloaded from the Download Section such as Beta 36??? If not then thats what ya need for UOGateway to Connect...
 

Kevin18012

Wanderer
It says... Oh No I didnt have that running :p


Scripts comiling... Failed <1 error,0 warning>
scripts\misc\serverlist.sc (which i edited earlier...) cs1002<line 23, colum 39>; expected
Scripts: one or more scrips failed to compil or no scripts were found..


I know i have the serverlist.sc, I changed the IP in there from Null to my pc's IP
 

Ravenal

Knight
hehe gotta have it running :p


When ya see that that means UOG connected but give a few mins you need at least 1% uptime to get it worked...
[code:1]
Client: 80.212.155.206: Connected. [2 Online]
Client: 80.212.155.206: Disconnected. [1 Online]
[/code:1]

And that one line make sure that it has a ; on the end
[code:1]
public const string Address = null;[/code:1]
 

Kevin18012

Wanderer
Sorry It took me so long to reply. I have that in there and the ; is on the end of that in the serverlist.sc script. Maybe im just not supose to have a server =P
 

Ravenal

Knight
no hehe do this

[code:1]public const string Address = "YourIP";[/code:1]

It says on top to use "" because tis a string not a int hehe :p
 

Kevin18012

Wanderer
Ok I got the shard up! YOU GUYS ARE GREAT!! But! apparently my port is being blocked, My wife cant create an account on her Computer.
 

Ravenal

Knight
hmm is this for like you and wife only or something? Cuz if so then ya could just do this...

Goto your AccountHandler.cs in the Accounting Folders within your script folder :)

And there ya should find this..

[code:1]
private static int MaxAccountsPerIP = 1;
private static bool AutoAccountCreation = true;
private static bool RestrictDeletion = true;
private static TimeSpan DeleteDelay = TimeSpan.FromDays( 7.0 );
[/code:1]

If ya want more than 1 IP per account just change that

[code:1]private static int MaxAccountsPerIP = 2;[/code:1]
If ya don't want other players to enter your shard just do this...

[code:1]private static bool AutoAccountCreation = true;[/code:1]
to
[code:1]private static bool AutoAccountCreation = false;[/code:1]

And if ya want no restriction on character deleting then just do this...
[code:1]
private static bool RestrictDeletion = true;
[/code:1]

to

[code:1]
private static bool RestrictDeletion = false;

[/code:1]

Hope I was a big help :D
 

Ravenal

Knight
oh yeah and umm if ya want to add another account do [admin and goto Account List and see the 2 things saying
[code:1]Name:
Pass:[/code:1]

Just fill it out for whatever passy and name ya want :)
 

Ravenal

Knight
as long as your server is up it will goto the shardlist, as long as you have more than 1% uptime it adds to the server list, and every 30 mins it is .5% hehe
 

KillerBeeZ

Knight
are you behind a router? if so you will need to go to the router settings and redirect all port 2593 to your computers IP address (not the same as an outside address... for example

lets say your IP for the outside is 123.123.123.123
and your computer IP is 192.168.0.1

you would redirect all port 2593 to IP 192.168.0.1

if you are not behind a router, you may be behind a firewall, if so you will need to accept your wifes IP from there.
 

Kevin18012

Wanderer
I had a router, But I dont know. Ther eisnt even any software for my router now. I dont have any Firewall Software on my PC either.
 
Top