Tehygun Posted May 2, 2018 Posted May 2, 2018 When i'm buffed, and logging to my account, i get this error in console: What should i do? Thanks for your answers! Quote
0 SweeTs Posted May 2, 2018 Posted May 2, 2018 You should use proper system (latest after update) with correct protocol (746 from memory). Otherwise get rid of the protocol version check. Quote
0 Tehygun Posted May 2, 2018 Author Posted May 2, 2018 3 minutes ago, SweeTs said: You should use proper system (latest after update) with correct protocol (746 from memory). Otherwise get rid of the protocol version check. where i can find latest system for interlude? Quote
0 sotid Posted May 2, 2018 Posted May 2, 2018 Not sure if the right now but try it. http://www.mediafire.com/file/5zyy3a51tlhw8k5/C6_System_Win10Supported.rar Quote
0 Tehygun Posted May 2, 2018 Author Posted May 2, 2018 39 minutes ago, sotid said: Not sure if the right now but try it. http://www.mediafire.com/file/5zyy3a51tlhw8k5/C6_System_Win10Supported.rar i got same error in console with that system. :| Quote
0 SweeTs Posted May 2, 2018 Posted May 2, 2018 Pointless. People use custom interfaces based on old system, so you end up with error no matter what. I would simply hide the message. Quote
0 Tehygun Posted May 3, 2018 Author Posted May 3, 2018 18 hours ago, SweeTs said: Pointless. People use custom interfaces based on old system, so you end up with error no matter what. I would simply hide the message. how i can hide this message from console? Quote
0 SweeTs Posted May 3, 2018 Posted May 3, 2018 Find ProtocolVersion.java and remove the check. Should be enough. I have to do the same. Quote
0 Tehygun Posted May 3, 2018 Author Posted May 3, 2018 5 hours ago, SweeTs said: Find ProtocolVersion.java and remove the check. Should be enough. I have to do the same. do you found ProtocolVersion.java ? Quote
0 Tehygun Posted May 3, 2018 Author Posted May 3, 2018 package net.sf.l2j.gameserver.network.clientpackets; import net.sf.l2j.gameserver.network.serverpackets.KeyPacket; import net.sf.l2j.gameserver.network.serverpackets.L2GameServerPacket; public final class ProtocolVersion extends L2GameClientPacket { private int _version; @Override protected void readImpl() { _version = readD(); } @Override protected void runImpl() { if (_version != 746) getClient().close((L2GameServerPacket) null); else getClient().sendPacket(new KeyPacket(getClient().enableCrypt())); } } this is ProtocolVersion.java - but what to change here need? Quote
Question
Tehygun
When i'm buffed, and logging to my account, i get this error in console:
What should i do? Thanks for your answers!
10 answers to this question
Recommended Posts
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.