Jump to content
  • 0

Buffer/Client Error


Tehygun

Question

10 answers to this question

Recommended Posts

  • 0

You should use proper system (latest after update) with correct protocol (746 from memory). Otherwise get rid of the protocol version check. 

Link to comment
Share on other sites

  • 0
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?

Link to comment
Share on other sites

  • 0
39 minutes ago, sotid said:

i got same error in console with that system. :|

Link to comment
Share on other sites

  • 0

Pointless. People use custom interfaces based on old system, so you end up with error no matter what. I would simply hide the message. 

Link to comment
Share on other sites

  • 0
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?

Link to comment
Share on other sites

  • 0
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?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   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...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock