Jump to content

Question

10 answers to this question

Recommended Posts

  • 0
Posted

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

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

  • 0
Posted

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

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

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

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

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