Jump to content

Recommended Posts

Posted

Dunno if you can or can't, maybe it's a matter of PROPER configuration / IP. I tried few variants in past and I could not, but a friend of mine, managed to make it work, I guess. I'm not sure. Try the IP4 as suggested.

Posted

New aCis LS <-> GS communication style not supports local networks w/o NAT rules. If you can't connect to your PC using own external IP, then use only local configuration. Or don't use client inside local network.

 

I recommend to you add in login server code next checking:

if (userIP.isLocal() && gsCommunicationIP.isLocal())
{
return localIP;
}
else
{
return externalServerIP;
}

Something like this.

 

Anyway, L2J Server UPnP service better for usage mixed connections. Port him to your sources.

Posted (edited)

all good i fixed it like this if anyone wants it

 

server.properties

# This is transmitted to the clients, so it has to be an IP or resolvable hostname. If this ip is resolvable by Login just leave *
Hostname = noip or whatismyip

# Bind ip of the gameserver, use * to bind on all available IPs.
GameserverHostname = *
GameserverPort = 7777

# The Loginserver host and port.
LoginHost = 192.168.x.x     <-----IPv4 Address from your pc
LoginPort = 9014

# This is the server id that the gameserver will request.
RequestServerID = 1

# If set to true, the login will give an other id to the server (if the requested id is already reserved).
AcceptAlternateID = True

login.properties

# This is transmitted to the clients, so it has to be an IP or resolvable hostname
Hostname = noip or whatismyip

# Bind ip of the LoginServer, use * to bind on all available IPs
LoginserverHostname = *
LoginserverPort = 2106

# The Loginserver host and port.
LoginHostname = *
LoginPort = 9014

# How many times you can provide an invalid account/pass before the IP gets banned
LoginTryBeforeBan = 5

and l2.ini save it with your 192.168.xx <----- IPv4 Address from your pc not 127.0.0.1 and MAKE SURE YOU OPEN YOUR PORTS IN THIS IP

Edited by ThelwHelpRePaidia

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...