I have another problem when putting in my ip i get a expect error
public static readonly string Address = xxx.xxx.xxx.xxx;
public static readonly string ServerName = "My Shard";
public static readonly bool AutoDetect = false;
private static IPAddress m_PublicAddress;
public static void Initialize()

upload_2015-4-19_10-33-46.png

When I go back to "Null" it works fine.
 
Post your serverlist.cs script :) be sure the ip which your putting in is correct-sending this to server support on windows
Line 39- expected your missing a ; be sure to use the " " also
"xxx.xxx.x.xxx";
 
Last edited:
You need to put your IP in quotes like this:

Code:
public static readonly string Address = "xxx.xxx.xxx.xxx";
 
Back