Git Product home page Git Product logo

Comments (44)

kamcio96 avatar kamcio96 commented on August 11, 2024

Logs?

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

There's nothing else in logs. But it kicks a player from the server, not from the proxy. I have a plugin that allows players to connect to the lobby when being kicked from the server.

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

ProtocolSupport-errlog file

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

I didn't say that I use ProtocolSupport.

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

set debug=true in server.properties

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

Something like that http://pastebin.com/0ySyxQEN

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

http://pastebin.com/5TpCNsXw

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

Plugins which uses ProtocoLib or NMS packets?
May something with npc

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

Maybe:
AntyCheat, BarAPI, DiscoArmor, HolographicDisplays, HolographicDisplaysPatch, NoCheatPlus

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

Try without AntyCheat 😜

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

That would be risky. 🗡 Why does this error occur? It's Travertine/Waterfall fault, on BungeeCord everything is ok.

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

BungeeCord dosen't support 1.7 so its clear.
Some plugin send invalid packet to server. PacketPlayOutNamedEntitySpawn
One field is null. Try without proxy. Error should exits too

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

I'm talking about last BungeeCord version that supports only 1.7 and 1.8. Players are being kicked only from 1 server I think.

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

Its plugin issue ;)

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

How is it possible? It would happen on BungeeCord too.

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

95% its AntyCheat issue with spawing NPC to detect killa aura

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

Why doesn't it happen on the other server, with almost same plugins and on the same proxy?

from travertine.

fuzzybot avatar fuzzybot commented on August 11, 2024

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

It's plugin made by me, based on PacketWrappers and ProtocolLib.

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

Soo, some source?

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

It's private. If you think that AntiCheat is the reason of the problems, why doesn't it happen on the other server? And why can't you fix this in Travertine?

from travertine.

fuzzybot avatar fuzzybot commented on August 11, 2024

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

so disable aura checks (permission or config) and test then 😜

It's not Travertine bug. Server kicks player with encode exception

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

It only happens on Travertine or old Waterfall.

from travertine.

mcwnuq avatar mcwnuq commented on August 11, 2024

Change version to 1.11 ;)

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

@mcwnuq That's a different solution. :D Won't it happen on 1.11?

from travertine.

mcwnuq avatar mcwnuq commented on August 11, 2024

1.7 is not supported version for two years.

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

But Travertine is supporting it.

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

Okey, we can talk more and more here. But its pointless. Your server. Your plugin. You have error. Just fix it!

[16:33:46] [Netty IO #2/WARN]: Caused by: java.lang.NullPointerException
[16:33:46] [Netty IO #2/WARN]:  at net.minecraft.server.v1_7_R4.PacketDataSerializer.a(PacketDataSerializer.java:269)
[16:33:46] [Netty IO #2/WARN]:  at net.minecraft.server.v1_7_R4.PacketPlayOutNamedEntitySpawn.b(PacketPlayOutNamedEntitySpawn.java:82)

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

It's not an error in my plugin, and it's caused by Travertine.

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

Can you send me your server jar?

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

It's normal 1.7.10 PaperSpigot.
I think it's this one:
http://tcpr.ca/files/paperspigot/PaperSpigot-1.7.10-R0.1-SNAPSHOT-b43.jar

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024
PacketDataSerializer.java:
267:    public ByteBuf setIndex(final int i, final int j) {
268:        return this.a.setIndex(i, j);
269:    }

Yeah, definitely normal paper...

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

byte[] abyte = s.getBytes(Charsets.UTF_8);

This is 269th line in my jar. Seems like that.

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

And PacketPlayOutNamedEntitySpawn.java:82 ?

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

packetdataserializer.a(property.getSignature());

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

You didn't set signature for texture

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

So?

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

So dont set texture, or set signature

from travertine.

HAMMERxPL avatar HAMMERxPL commented on August 11, 2024

I don't understand.

from travertine.

kamcio96 avatar kamcio96 commented on August 11, 2024

How do you spawn bot?

from travertine.

 avatar commented on August 11, 2024

Does this not work with servers using ProtocolLib plugin? What other known imcompats?

from travertine.

Techcable avatar Techcable commented on August 11, 2024

@T0rched ProtocolLib should work fine, @kamcio96 was just trying to diagnose the issue, which we believe is with his custom AntiCheat plugin.
@HAMMERxPL
Although travertine triggers this error, we believe it's your plugin's fault for not operating by standard protocol procedures.
Please try and reproduce this bug without your AntiCheat plugin, or try and use the proper way to spawn fake players on 1.7.

from travertine.

electronicboy avatar electronicboy commented on August 11, 2024

Closing due to inactivity

from travertine.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.