@ Koner
In Connection.cs
make this edit (sorry but i couldn't find the original code)
Code:
try
{
XYNetCommon.SetSocketPermission();
Listener = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
Listener.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, 1);
IPAddress hostIP = IPAddress.Parse("YOURLOCALIPHERE");
IPEndPoint myEnd = new IPEndPoint(hostIP, m_nPort);
Listener.Bind(myEnd);
Listener.Listen(m_nListenBacklog);
this.BufferSize = 1024;
Listener.BeginAccept(new AsyncCallback(WaitConnections), new StateObj());
#if DEBUG
Console.WriteLine("Server successfully started");
#endif
}
Its a noobish fix, but its my contribution. make sure to replace YOURLOCALIPHERE with your local ip (192.168.x.x usually).
also, i can't leave birth village. pm me for some teamviewer help please?