Jump to content

Question

Posted (edited)

hello can someone help me with this error 

02:38:51 [strixplatform] ERROR - Received client data not valide. Client checksum: -54545454 Decoded checksum: 54554
Client: [IP: 250.32.152.167] - Failed writing: [S] KeyPacket
java.lang.NullPointerException
        at java.nio.ByteBuffer.put(ByteBuffer.java:867)
        at net.sf.l2j.commons.mmocore.SendablePacket.writeB(SendablePacket.java:68)
        at net.sf.l2j.gameserver.network.serverpackets.KeyPacket.writeImpl(KeyPacket.java:55)
        at net.sf.l2j.gameserver.network.serverpackets.L2GameServerPacket.write(L2GameServerPacket.java:38)
        at net.sf.l2j.commons.mmocore.SelectorThread.putPacketIntoWriteBuffer(SelectorThread.java:595)
        at net.sf.l2j.commons.mmocore.SelectorThread.writeClosePacket(SelectorThread.java:466)
        at net.sf.l2j.commons.mmocore.SelectorThread.run(SelectorThread.java:212)

 

Edited by iAlreadyExist
  • Upvote 1

3 answers to this question

Recommended Posts

  • 0
Posted (edited)

KeyPacket isn't an existing packet on any L2 chronicle (at least up to Grand Crusade, and since you use net.sf.l2j you're probably IL or near), so I suppose it's a custom packet used by strix patlform and it fails somehow.

 

Technically speaking, it can be explained as your "buffer" from where you try to parse your writeB doesn't exist. It's not empty, it simply doesn't exist. Can be because you flushed the _buf meanwhile (_buf = null while accessing it and not locking it), can be because you tried to access to it while it wasn't initialized.

 

Better ask to Strix guys why their custom stuff doesn't work :].

Edited by Tryskell
Guest
This topic is now closed to further replies.


×
×
  • Create New...