Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
There is no support for other server builds than the official provided by l2jserver.com
karma12
Posts: 3 Joined: Sat Dec 20, 2014 11:14 pm
Post
by karma12 » Sun Dec 21, 2014 11:13 am
Hello, i built yesterday through eclipse the new files (Ertheia) from l2j. I made it all, but when I log in to choose server nothing happens; only one message in the console : Wrong checksum from client [X <127.0.0.1>]
it's a home based server and i made it just for fun
any assistance? thanks
Sdw
L2j Veteran
Posts: 855 Joined: Mon May 03, 2010 8:38 am
Location: France
Post
by Sdw » Sun Dec 21, 2014 11:54 am
We have the dumbest bug ever : don't use the enter key during the whole login process (actually don't choose you server using enter)
I will look into it asap
smakepz
Posts: 8 Joined: Sun Oct 12, 2014 9:37 pm
Post
by smakepz » Mon Dec 22, 2014 2:31 pm
or this if sdw- approves/agrees
Code: Select all
diff --git a/L2J_Server/java/com/l2jserver/loginserver/network/L2LoginClient.java b/L2J_Server/java/com/l2jserver/loginserver/network/L2LoginClient.java
index b5304ce..850fe69 100644
--- a/L2J_Server/java/com/l2jserver/loginserver/network/L2LoginClient.java
+++ b/L2J_Server/java/com/l2jserver/loginserver/network/L2LoginClient.java
@@ -28,7 +28,6 @@
import org.mmocore.network.MMOClient;
import org.mmocore.network.MMOConnection;
-import org.mmocore.network.SendablePacket;
import com.l2jserver.Config;
import com.l2jserver.loginserver.LoginController;
@@ -100,16 +99,13 @@
if (!isChecksumValid)
{
_log.warning("Wrong checksum from client: " + toString());
- super.getConnection().close((SendablePacket<L2LoginClient>) null);
- return false;
}
return true;
}
catch (IOException e)
{
_log.warning(getClass().getSimpleName() + ": " + e.getMessage());
- super.getConnection().close((SendablePacket<L2LoginClient>) null);
- return false;
+ return true;
}
}
UnAfraid
L2j Veteran
Posts: 4199 Joined: Mon Jul 23, 2007 4:25 pm
Location: Bulgaria
Contact:
Post
by UnAfraid » Mon Dec 22, 2014 7:14 pm
That could create new exploit
smakepz
Posts: 8 Joined: Sun Oct 12, 2014 9:37 pm
Post
by smakepz » Mon Dec 22, 2014 8:10 pm
I'm sure it does, just a temp fix until it's reworked?
Zoey76
L2j Inner Circle
Posts: 7007 Joined: Tue Aug 11, 2009 3:36 am
Post
by Zoey76 » Sat May 30, 2015 1:34 am
Moved to Ertheia support.