Jump to content
  • 0

How to remove this ? :D


Question

10 answers to this question

Recommended Posts

  • 0
Posted

Next time read sticked topics like this FAQ

 


 

First of all. You should not do that! If You want to do it - you dont respect L2J Dev work!

 

Ok, but if You wish just open loginserver.properties

 

Find and edit this line:

 

ShowLicence = True

 

  • 0
Posted

Next time read sticked topics like this FAQ

 


 

First of all. You should not do that! If You want to do it - you dont respect L2J Dev work!

 

Ok, but if You wish just open loginserver.properties

 

Find and edit this line:

 

not working in all packs

  • 0
Posted

not working in all packs

 

Really? It wokrs for me (it was already checked before posting it in my FAQ)

 

Ok so another way?

 

EnterWorld.java

 

You have to find line responsible for showing this message, just delete it and done..

  • 0
Posted

actually open Enterworld.java from client packets and delete the following lines:

 

        SystemMessage sm = new SystemMessage(SystemMessageId.WELCOME_TO_LINEAGE);

        sendPacket(sm);

 

        sm = new SystemMessage(SystemMessageId.S1_S2);

        sm.addString(getText("V2VsY29tZSB0byBhIEwySiBTZXJ2ZXIsIGZvdW5kZWQgYnkgTDJDaGVmLg=="));

 

        sendPacket(sm);

        sm = new SystemMessage(SystemMessageId.S1_S2);

        sm.addString(getText("RGV2ZWxvcGVkIGJ5IHRoZSBMMkogRGV2IFRlYW0gYXQgbDJqc2VydmVyLmNvbS4="));

 

        sendPacket(sm);

 

        if (Config.SERVER_VERSION != null)

        {

            sm = new SystemMessage(SystemMessageId.S1_S2);

            sm.addString(getText("TDJKIFNlcnZlciBWZXJzaW9uOg==")+"      "+Config.SERVER_VERSION);

            sendPacket(sm);

        }

 

        if (Config.DATAPACK_VERSION != null)

        {

            sm = new SystemMessage(SystemMessageId.S1_S2);

            sm.addString(getText("TDJKIERhdGFwYWNrIFZlcnNpb246")+"  "+Config.DATAPACK_VERSION);

            sendPacket(sm);

        }

        sm = null;

 

        sm = new SystemMessage(SystemMessageId.S1_S2);

        sm.addString(getText("Q29weXJpZ2h0IDIwMDQtMjAwNw=="));

        sendPacket(sm);

        sm = new SystemMessage(SystemMessageId.S1_S2);

        sm.addString(getText("V2VsY29tZSB0byA="));

        sm.addString(LoginServerThread.getInstance().getServerName());

        sendPacket(sm);

 

 

i have those in my server too but i didnt removed em, respect is the best thing in the world ;D

  • 0
Posted

actually open Enterworld.java from client packets and delete the following lines:

 

        SystemMessage sm = new SystemMessage(SystemMessageId.WELCOME_TO_LINEAGE);

        sendPacket(sm);

 

        sm = new SystemMessage(SystemMessageId.S1_S2);

        sm.addString(getText("V2VsY29tZSB0byBhIEwySiBTZXJ2ZXIsIGZvdW5kZWQgYnkgTDJDaGVmLg=="));

 

        sendPacket(sm);

        sm = new SystemMessage(SystemMessageId.S1_S2);

        sm.addString(getText("RGV2ZWxvcGVkIGJ5IHRoZSBMMkogRGV2IFRlYW0gYXQgbDJqc2VydmVyLmNvbS4="));

 

        sendPacket(sm);

 

        if (Config.SERVER_VERSION != null)

        {

            sm = new SystemMessage(SystemMessageId.S1_S2);

            sm.addString(getText("TDJKIFNlcnZlciBWZXJzaW9uOg==")+"      "+Config.SERVER_VERSION);

            sendPacket(sm);

        }

 

        if (Config.DATAPACK_VERSION != null)

        {

            sm = new SystemMessage(SystemMessageId.S1_S2);

            sm.addString(getText("TDJKIERhdGFwYWNrIFZlcnNpb246")+"  "+Config.DATAPACK_VERSION);

            sendPacket(sm);

        }

        sm = null;

 

        sm = new SystemMessage(SystemMessageId.S1_S2);

        sm.addString(getText("Q29weXJpZ2h0IDIwMDQtMjAwNw=="));

        sendPacket(sm);

        sm = new SystemMessage(SystemMessageId.S1_S2);

        sm.addString(getText("V2VsY29tZSB0byA="));

        sm.addString(LoginServerThread.getInstance().getServerName());

        sendPacket(sm);

 

 

i have those in my server too but i didnt removed em, respect is the best thing in the world ;D

thx gx this fix the problem

Guest
This topic is now closed to further replies.


×
×
  • Create New...