xxxdragonxxxx
Initiate
xxxdragonxxxx created a new tutorial:
im stuck on trying to set up serv uo up so others can log on to it
Read this tutorial...
im stuck on trying to set up serv uo up so others can log on to it
Code:using System; using System.Net; using System.Net.Sockets; using Server.Network; namespace Server { public class SocketOptions { private static readonly IPEndPoint[] m_ListenerEndPoints = new IPEndPoint[] { new IPEndPoint(IPAddress.Any, 2593), // Default: Listen on port 2593 on all IP addresses // Examples: // new IPEndPoint( IPAddress.Any, 80 ), // Listen on port 80 on all IP addresses // new IPEndPoint( IPAddress.Parse( "1.2.3.4" ), 2593 ), // Listen on port...
Read this tutorial...
Last edited by a moderator: