Skip to content

Releases: retrooper/packetevents

v1.3.4.1

22 Jun 20:46
643fa1a
Compare
Choose a tag to compare
v1.3.4.1 Pre-release
Pre-release

UNSTABLE AND UNTESTED!!!

Changelog:

  • Clientbound Abilities wrapper added and is sendable to clients

  • Clientbound Health update wrapper added and is also sendable to clients

Info:
TinyProtocol helped us listen to some login and handshake packets!
But it also came with a lot of bugs and problems to deal with, even today there are still some bugs and many people using this API have complained about it.

I will now stop using TinyProtocol.

WHAT WILL THIS MEAN?

There will be lots of pro's and con's.

Pros:

  • No more issues with reloading
  • Smaller file size

Cons:

  • Version lookup will now only be possible with dependencies like ViaVersion.

  • Soft depend on via version as mentioned above. Soft depend meaning that if you want to lookup versions, ViaVersion api is required to be provided.

  • All login wrappers and the login event will be removed!

It is very important that PacketEvents is stable and people shouldn't be constantly running into issues!
I am releasing this version with TinyProtocol for the users that will miss and still want TinyProtocol.

v1.3.3.1

18 Jun 14:15
Compare
Choose a tag to compare

Version 1.3.3.1

Changelog

  • Lots of code optimizations
  • Feature to kick all online players on reload or restart
  • PacketEvent.currentCalculatedMS() has been deprecated and you should now use
    PacketEvents.highlyPreciseMillis()
  • EventManager hasRegistered method renamed to isRegistered.
    Usage: PacketEvents.getEventManager().isRegistered()

v1.3.3

17 Jun 15:37
Compare
Choose a tag to compare

Release 1.3.3

Changelog:

• LoginInEncryptionBegin & LoginOutEncryptionBegin wrapper added,
• LoginStart & LoginStatusPing wrapper added,
• Bug fixed with PostPlayerInjectEvent not being called
• Custom GameProfile class coded,
• Main example class readded
• EventManager small optimization
• Imports optimized

v1.3.2

16 Jun 13:59
Compare
Choose a tag to compare

Changelog:

v1.3.1.3

16 Jun 12:31
Compare
Choose a tag to compare

Changelog:

  • All wrapper classes can no longer be extended now.(you never should've anyway)

  • WrappedPacketOutKickDisconnect (sendable and readable)
    Can be used to kick users

  • PacketEvents can now be shaded into your projects, and is no longer recognized as a plugin

  • ClientVersion added isHigherThan(ClientVersion version) and isLowerThan(ClientVersion version) methods for simple client version comparison.

  • Packet.isInstanceOf(fatherPacketName, childPacketName) has now been deprecated, will be removed in the next version!

  • Packet.isInstanceOfFlyingPacket(nmsPacketObject) method added (might soon be renamed to isFlyingPacket)

It has been replaced by Packet.isInstanceOfFlyingPacket(nmsPacketObject), as the flying packet is the only packet that has subclasses.
The flying packet is also used a lot, so I made an efficient way to check if the nms packet object is an instanceof of it!
If you are on a 1.9+ server, it will just check if the packet is an instance of "PacketPlayInPosition" or "PacketPlayInPositionLook" or "PacketPlayInLook".

v1.3.1

14 Jun 13:18
Compare
Choose a tag to compare

1.3.1 Release

v1.2.9.2 Is out now!

10 Jun 10:13
66f2c37
Compare
Choose a tag to compare

Version 1.2.9.2

Info:

I cannot guarantee this release is fully stable, but as far as I have tested, everything seems stable,
I have tested on 1.8.8 spigot and 1.15.2 spigot!

Changelog:

  • Client version checking with PacketEvents.getClientVersion(player), so NOT call this before the bukkit PlayerJoinEvent is called!

  • Player Dig wrapper bug fix for 1.15.2 spigot

  • Optimized all imports(removed unused import statements)

  • Readme updated!

v1.2.7 Release

05 Jun 18:20
Compare
Choose a tag to compare

Optimizations & bug fixes

  • getHand() function in WrappedPacketInUseEntity NULL!!, so for now I just removed the getHand() method.

  • WrappedPacketInEntityAction added as a couple of you suggested

  • Optimization to getting entities by their id(used in use entity and entity action packet)

  • After optimizing the way I access entities by their ID, file size has reduced by about 10%

v1.2.6 Release

03 Jun 14:40
Compare
Choose a tag to compare

More utilities added and pretty stable.
Optimization in the event system.
Now two times faster!

  • KeepAlive packet wrapper added
  • getting player ping added (PacketEvents.getPing(player);
    And more bug fixes!

v1.2.5 Release

28 May 18:27
Compare
Choose a tag to compare

Version 1.2.5 is stable!

Lots and lots of new features and massive optimizations!

File size reduced by almost 50%!

Changelog:

• ServerTickEvent now contains a tick count and an optional time argument.
• Util to get Server TPS added(supporting 1.7.10-1.15.2)
• PlayerInjectEvent added
• PlayerUninjectEvent added
• Ability to download source code and include in your project added
• Wiki api examples and wiki setup guide added
• Multiple packages moved, better package organization
• Useless comments removed
• Massive code cleanup, now using reflection and not writing each wrapper one time for each version.
• More fields added in PacketWrapper classes!
• Many bugs fixed like Player failing to inject
• Wrapper classes naming pattern changed from WrappedPacketPlayIn... to WrappedPacketIn...
Same will apply for future Out packets!