Jump to content
  • 0

noobish error pls help!


cta8ic

Question

8 answers to this question

Recommended Posts

  • 0

 

it sends a packet which has nothing to read, but l2j didn't expect this to happen and make a System.exit to it.

 

Simply... it sends a 0 value (emtpy packet or so) ,so in the mmocore it displays ...

 

        else if (result == 0)

        {

            // read interest but nothing to read? wtf?

            System.out.println("NOOBISHT ERROR 2 THE MISSION");

            System.exit(0);

        }

 

and now... here's the simple -beep-in' fix:

 

1. Just delete the ELSE IF <- you will cry if you do like most kids

2. Make it not to close.. simply remove it and replace by this..

 

        else if (result == 0)

        {

            // read interest but nothing to read? wtf?

            System.out.println("MMOCore: Nothing to read.");

            System.out.println("Trying not to close the server...");

            //System.exit(0);

            System.out.println("MMOCore Sender IP: "+ con.getSocketChannel().socket().getInetAddress().getHostAddress());

            con.onForcedDisconnection();

            this.closeConnectionImpl(con);

        }

 

Link to comment
Share on other sites

  • 0

http://www.maxcheaters.com/forum/index.php?topic=122985.0

 

Όλα τα Preconfigured pack έγιναν delete από το forum. Μόνο αν θα κάνεις compile μπορείς να το φτιάξεις, και να ξέρεις οτι στα καινούργια packs το έχουν φτιάξει.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...